Fix typo. Pointed out by Kevin Grittner.

This commit is contained in:
Robert Haas 2010-09-02 02:52:14 +00:00
parent 21076076e9
commit f3c903f867
1 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/catalog/objectaddress.c,v 1.2 2010/08/27 21:31:19 rhaas Exp $ * $PostgreSQL: pgsql/src/backend/catalog/objectaddress.c,v 1.3 2010/09/02 02:52:14 rhaas Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -215,7 +215,7 @@ get_object_address(ObjectType objtype, List *objname, List *objargs,
break; break;
default: default:
elog(ERROR, "unrecognized objtype: %d", (int) objtype); elog(ERROR, "unrecognized objtype: %d", (int) objtype);
/* placate compiler, in case it things elog might return */ /* placate compiler, in case it thinks elog might return */
address.classId = InvalidOid; address.classId = InvalidOid;
address.objectId = InvalidOid; address.objectId = InvalidOid;
address.objectSubId = 0; address.objectSubId = 0;