Commit f3c903f8 authored by Robert Haas's avatar Robert Haas

Fix typo. Pointed out by Kevin Grittner.

parent 21076076
......@@ -8,7 +8,7 @@
*
*
* 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;
default:
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.objectId = InvalidOid;
address.objectSubId = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment