1
0
mirror of https://github.com/postgres/postgres.git synced 2025-10-28 11:55:03 +03:00

Fix compiler warning

Introduced by 087e696f06, happens with gcc
4.7.2.
This commit is contained in:
Peter Eisentraut
2017-04-16 20:50:31 -04:00
parent bbd4a1b60b
commit b6e6ae1dc6

View File

@@ -1526,8 +1526,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;