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/include/tcop/variable.h | |
parent | a90f12fd9d6886da4f0734288496361a304d3882 (diff) |
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
Diffstat (limited to 'src/include/tcop/variable.h')
-rw-r--r-- | src/include/tcop/variable.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/tcop/variable.h b/src/include/tcop/variable.h index a687d8fed6f..4792cac9656 100644 --- a/src/include/tcop/variable.h +++ b/src/include/tcop/variable.h @@ -2,7 +2,7 @@ * Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var' * statements * - * $Id: variable.h,v 1.5 1997/09/07 05:02:01 momjian Exp $ + * $Id: variable.h,v 1.6 1997/09/08 02:39:21 momjian Exp $ * */ @@ -16,14 +16,14 @@ struct PGVariables { struct { - bool euro; + bool euro; enum DateFormat format; - } date; + } date; }; extern struct PGVariables PGVariables; /*-----------------------------------------------------------------------*/ -bool SetPGVariable(const char *, const char *); -bool GetPGVariable(const char *); -bool ResetPGVariable(const char *); +bool SetPGVariable(const char *, const char *); +bool GetPGVariable(const char *); +bool ResetPGVariable(const char *); |