diff options
Diffstat (limited to 'src/test/examples/testlibpq3.c')
-rw-r--r-- | src/test/examples/testlibpq3.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/test/examples/testlibpq3.c b/src/test/examples/testlibpq3.c index 8051da58cff..cb5d35bacf6 100644 --- a/src/test/examples/testlibpq3.c +++ b/src/test/examples/testlibpq3.c @@ -28,7 +28,7 @@ tuple 1: got */ #include <stdio.h> #include <string.h> -#include "postgres.h" /* -> "c.h" -> int16, in access/attnum.h */ +#include "postgres.h" /* -> "c.h" -> int16, in access/attnum.h */ #include "libpq-fe.h" #include "utils/geo_decls.h" /* for the POLYGON type */ @@ -47,9 +47,9 @@ main() *pgoptions, *pgtty; char *dbName; - /* int nFields; - * int i, - * j; + + /* + * int nFields; int i, j; */ int i; int i_fnum, @@ -180,5 +180,6 @@ main() /* close the connection to the database and cleanup */ PQfinish(conn); - return 0; /* Though PQfinish(conn1) has called exit(1) */ + return 0; /* Though PQfinish(conn1) has called + * exit(1) */ } |