From: Shigeru Hanada Date: Thu, 25 Nov 2010 05:28:34 +0000 (+0900) Subject: Fix indent. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=2e2ba0429108af4820b65cbd457cce8ae56c8cea;p=users%2Fhanada%2Fpostgres.git Fix indent. --- diff --git a/src/backend/commands/tablecmds.c b/src/backend/commands/tablecmds.c index 4b5c801852..0d2aeeab84 100644 --- a/src/backend/commands/tablecmds.c +++ b/src/backend/commands/tablecmds.c @@ -3618,10 +3618,10 @@ ATSimplePermissions(Relation rel, bool allowView, bool allowType, bool allowFore (relkind == RELKIND_COMPOSITE_TYPE && !allowType) || (relkind == RELKIND_FOREIGN_TABLE && !allowForeignTable)) { - ereport(ERROR, - (errcode(ERRCODE_WRONG_OBJECT_TYPE), - errmsg("\"%s\" is not a %s", - RelationGetRelationName(rel), allowed.data))); + ereport(ERROR, + (errcode(ERRCODE_WRONG_OBJECT_TYPE), + errmsg("\"%s\" is not a %s", + RelationGetRelationName(rel), allowed.data))); } pfree(allowed.data); }