This file was whacked by pgindent before it knew it shouldn't remove

braces around single statements (for PG_TRY macros).  This patch fixes
it. Alvaro Herrera.
This commit is contained in:
Neil Conway 2005-04-06 04:34:22 +00:00
parent 726220fb9f
commit 00a1b1e272
1 changed files with 4 additions and 2 deletions

View File

@ -14,7 +14,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/resowner/resowner.c,v 1.11 2005/03/25 18:30:27 tgl Exp $
* $PostgreSQL: pgsql/src/backend/utils/resowner/resowner.c,v 1.12 2005/04/06 04:34:22 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@ -158,7 +158,9 @@ ResourceOwnerRelease(ResourceOwner owner,
save = CurrentResourceOwner;
PG_TRY();
ResourceOwnerReleaseInternal(owner, phase, isCommit, isTopLevel);
{
ResourceOwnerReleaseInternal(owner, phase, isCommit, isTopLevel);
}
PG_CATCH();
{
CurrentResourceOwner = save;