Fix compiler warning

Introduced by 087e696f066d31cb2f1269a1296a13dfe0bf7a11, 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; ObjectAddress address;
ListCell *cell; ListCell *cell;
List *copy; List *copy;
TypeName *typenames[2]; TypeName *typenames[2] = { NULL, NULL };
Oid typeoids[2]; Oid typeoids[2] = { InvalidOid, InvalidOid };
int membernum; int membernum;
int i; int i;