1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-03 20:02:46 +03:00

Fix compiler warning

Introduced by 41306a511c, happens with gcc
4.7.2.
This commit is contained in:
Peter Eisentraut
2017-04-16 20:49:40 -04:00
parent a30f146db4
commit 1ec36a9eb4

View File

@ -1578,8 +1578,8 @@ get_object_address_opf_member(ObjectType objtype,
ObjectAddress address;
ListCell *cell;
List *copy;
TypeName *typenames[2];
Oid typeoids[2];
TypeName *typenames[2] = { NULL, NULL };
Oid typeoids[2] = { InvalidOid, InvalidOid };
int membernum;
int i;