diff options
author | Michael Meskes <meskes@postgresql.org> | 2009-05-20 16:39:56 +0000 |
---|---|---|
committer | Michael Meskes <meskes@postgresql.org> | 2009-05-20 16:39:56 +0000 |
commit | 11a497f99a14711d81bf0f19fe230d2287997194 (patch) | |
tree | 0061fdaf048d344d67e8dd9ed397f444435498ec /src/interfaces/ecpg/test/preproc | |
parent | 0754b391f30e17fde9d7d14d5e0eb458fc02289a (diff) | |
download | postgresql-11a497f99a14711d81bf0f19fe230d2287997194.tar.gz postgresql-11a497f99a14711d81bf0f19fe230d2287997194.zip |
More variables gcc moans about
Diffstat (limited to 'src/interfaces/ecpg/test/preproc')
-rw-r--r-- | src/interfaces/ecpg/test/preproc/array_of_struct.pgc | 2 | ||||
-rw-r--r-- | src/interfaces/ecpg/test/preproc/autoprep.pgc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/test/preproc/array_of_struct.pgc b/src/interfaces/ecpg/test/preproc/array_of_struct.pgc index 50fde0662ab..40d566b4be8 100644 --- a/src/interfaces/ecpg/test/preproc/array_of_struct.pgc +++ b/src/interfaces/ecpg/test/preproc/array_of_struct.pgc @@ -20,7 +20,7 @@ EXEC SQL TYPE cust_ind IS short phone_ind; }; -int main( int argc, char * argv[] ) +int main() { EXEC SQL begin declare section; customer custs1[10]; diff --git a/src/interfaces/ecpg/test/preproc/autoprep.pgc b/src/interfaces/ecpg/test/preproc/autoprep.pgc index d29c3d556d0..413284d3951 100644 --- a/src/interfaces/ecpg/test/preproc/autoprep.pgc +++ b/src/interfaces/ecpg/test/preproc/autoprep.pgc @@ -5,7 +5,7 @@ /* test automatic prepare for all statements */ EXEC SQL INCLUDE ../regression; -int main(int argc, char* argv[]) { +int main() { EXEC SQL BEGIN DECLARE SECTION; int item[4], ind[4], i = 1; EXEC SQL END DECLARE SECTION; |