From 2e2ba0429108af4820b65cbd457cce8ae56c8cea Mon Sep 17 00:00:00 2001 From: Shigeru Hanada Date: Thu, 25 Nov 2010 14:28:34 +0900 Subject: [PATCH] Fix indent. --- src/backend/commands/tablecmds.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); } -- 2.39.5