diff options
| author | Bruce Momjian <bruce@momjian.us> | 1997-09-08 02:41:22 +0000 |
|---|---|---|
| committer | Bruce Momjian <bruce@momjian.us> | 1997-09-08 02:41:22 +0000 |
| commit | 319dbfa7364721d3343af03a7ce063c2a2c9d385 (patch) | |
| tree | a2146fe02c49ce1e497b7c287dfcaa367a703ae4 /src/backend/utils/error/excid.c | |
| parent | a90f12fd9d6886da4f0734288496361a304d3882 (diff) | |
| download | postgresql-319dbfa7364721d3343af03a7ce063c2a2c9d385.tar.gz | |
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
Diffstat (limited to 'src/backend/utils/error/excid.c')
| -rw-r--r-- | src/backend/utils/error/excid.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/backend/utils/error/excid.c b/src/backend/utils/error/excid.c index ada9dabed7..b75a6f46b0 100644 --- a/src/backend/utils/error/excid.c +++ b/src/backend/utils/error/excid.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excid.c,v 1.3 1997/09/07 04:53:19 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/error/Attic/excid.c,v 1.4 1997/09/08 02:31:31 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -25,19 +25,19 @@ * FailedAssertion -- * Indicates an Assert(...) failed. */ -Exception FailedAssertion = {"Failed Assertion"}; +Exception FailedAssertion = {"Failed Assertion"}; /* * BadState -- * Indicates a function call request is inconsistent with module state. */ -Exception BadState = {"Bad State for Function Call"}; +Exception BadState = {"Bad State for Function Call"}; /* * BadArg -- * Indicates a function call argument or arguments is out-of-bounds. */ -Exception BadArg = {"Bad Argument to Function Call"}; +Exception BadArg = {"Bad Argument to Function Call"}; /***************************************************************************** * Specific Recoverable Exceptions * @@ -47,21 +47,21 @@ Exception BadArg = {"Bad Argument to Function Call"}; * BadAllocSize -- * Indicates that an allocation request is of unreasonable size. */ -Exception BadAllocSize = {"Too Large Allocation Request"}; +Exception BadAllocSize = {"Too Large Allocation Request"}; /* * ExhaustedMemory -- * Indicates an dynamic memory allocation failed. */ -Exception ExhaustedMemory = {"Memory Allocation Failed"}; +Exception ExhaustedMemory = {"Memory Allocation Failed"}; /* * Unimplemented -- * Indicates a function call request requires unimplemented code. */ -Exception Unimplemented = {"Unimplemented Functionality"}; +Exception Unimplemented = {"Unimplemented Functionality"}; -Exception CatalogFailure = {"Catalog failure"}; /* XXX inconsistent */ -Exception InternalError = {"Internal Error"}; /* XXX inconsistent */ -Exception SemanticError = {"Semantic Error"}; /* XXX inconsistent */ -Exception SystemError = {"System Error"}; /* XXX inconsistent */ +Exception CatalogFailure = {"Catalog failure"}; /* XXX inconsistent */ +Exception InternalError = {"Internal Error"}; /* XXX inconsistent */ +Exception SemanticError = {"Semantic Error"}; /* XXX inconsistent */ +Exception SystemError = {"System Error"}; /* XXX inconsistent */ |
