diff options
Diffstat (limited to 'src/test/examples/testlibpq2.c')
-rw-r--r-- | src/test/examples/testlibpq2.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/test/examples/testlibpq2.c b/src/test/examples/testlibpq2.c index 214a3cbc150..540ed91cbfe 100644 --- a/src/test/examples/testlibpq2.c +++ b/src/test/examples/testlibpq2.c @@ -37,9 +37,9 @@ main() *pgoptions, *pgtty; char *dbName; - /* int nFields; - * int i, - * j; + + /* + * int nFields; int i, j; */ PGconn *conn; @@ -106,5 +106,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) */ } |