summaryrefslogtreecommitdiff
path: root/src/include/postgres.h
diff options
context:
space:
mode:
authorBruce Momjian2001-03-22 04:01:46 +0000
committerBruce Momjian2001-03-22 04:01:46 +0000
commit0bd93b2a64d59d1ec33db4f50f293d0ae2bce872 (patch)
treed8ac1814300dc3809a79e3ac140a1663b0139657 /src/include/postgres.h
parent629a23ddf7c15b0f27d2c4417af9cd476093073d (diff)
pgindent run. Make it all clean.
Diffstat (limited to 'src/include/postgres.h')
-rw-r--r--src/include/postgres.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/postgres.h b/src/include/postgres.h
index f7fd2f9fae..ac8d0b2346 100644
--- a/src/include/postgres.h
+++ b/src/include/postgres.h
@@ -85,7 +85,7 @@ typedef struct varattrib
char va_data[1]; /* Plain stored attribute */
} va_content;
-} varattrib;
+} varattrib;
#define VARATT_FLAG_EXTERNAL 0x80000000
#define VARATT_FLAG_COMPRESSED 0x40000000
@@ -322,7 +322,7 @@ typedef Datum *DatumPtr;
* Returns 64-bit integer value of a datum.
*
* Note: this macro hides the fact that int64 is currently a
- * pass-by-reference type. Someday it may be pass-by-value,
+ * pass-by-reference type. Someday it may be pass-by-value,
* at least on some platforms.
*/
@@ -342,7 +342,7 @@ extern Datum Int64GetDatum(int64 X);
* Returns 4-byte floating point value of a datum.
*
* Note: this macro hides the fact that float4 is currently a
- * pass-by-reference type. Someday it may be pass-by-value.
+ * pass-by-reference type. Someday it may be pass-by-value.
*/
#define DatumGetFloat4(X) (* ((float4 *) DatumGetPointer(X)))
@@ -361,7 +361,7 @@ extern Datum Float4GetDatum(float4 X);
* Returns 8-byte floating point value of a datum.
*
* Note: this macro hides the fact that float8 is currently a
- * pass-by-reference type. Someday it may be pass-by-value,
+ * pass-by-reference type. Someday it may be pass-by-value,
* at least on some platforms.
*/
@@ -457,7 +457,7 @@ extern Exception FailedAssertion;
extern Exception BadArg;
extern Exception BadState;
-extern bool assert_enabled;
+extern bool assert_enabled;
/*
* USE_ASSERT_CHECKING, if defined, turns on all the assertions.
@@ -538,7 +538,7 @@ extern bool assert_enabled;
extern int ExceptionalCondition(char *conditionName,
Exception *exceptionP, char *details,
char *fileName, int lineNumber);
-extern char *vararg_format(const char *fmt, ...);
+extern char *vararg_format(const char *fmt,...);
#ifndef USE_ASSERT_CHECKING
#define LogAssert(condition, printArgs)