diff options
author | Bruce Momjian <bruce@momjian.us> | 2010-02-26 17:07:55 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2010-02-26 17:07:55 +0000 |
commit | 2cc6ff45f8813593e7c8c0757cd13a7b63a41768 (patch) | |
tree | a36836570636a1aab4d8186db5f03fce4f28a0db /src/interfaces/ecpg/test/preproc/struct.h | |
parent | 98c356c8ad8b37cbf18932800a73e57d2533bba6 (diff) | |
download | postgresql-2cc6ff45f8813593e7c8c0757cd13a7b63a41768.tar.gz postgresql-2cc6ff45f8813593e7c8c0757cd13a7b63a41768.zip |
Revert pgindent changes to ecpg include files that are part of ecpg
regession test output, and update pgindent script to avoid them in the
future.
Diffstat (limited to 'src/interfaces/ecpg/test/preproc/struct.h')
-rw-r--r-- | src/interfaces/ecpg/test/preproc/struct.h | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/src/interfaces/ecpg/test/preproc/struct.h b/src/interfaces/ecpg/test/preproc/struct.h index 75e802ac6fe..cc4681b74fe 100644 --- a/src/interfaces/ecpg/test/preproc/struct.h +++ b/src/interfaces/ecpg/test/preproc/struct.h @@ -1,20 +1,18 @@ -struct mytype -{ - int id; - char t[64]; - double d1; /* dec_t */ - double d2; - char c[30]; +struct mytype { + int id; + char t[64]; + double d1; /* dec_t */ + double d2; + char c[30]; }; typedef struct mytype MYTYPE; -struct mynulltype -{ - int id; - int t; - int d1; - int d2; - int c; +struct mynulltype { + int id; + int t; + int d1; + int d2; + int c; }; typedef struct mynulltype MYNULLTYPE; |