summaryrefslogtreecommitdiff
path: root/src/test/examples/testlibpq.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/examples/testlibpq.c')
-rw-r--r--src/test/examples/testlibpq.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/examples/testlibpq.c b/src/test/examples/testlibpq.c
index fc75467e47..f967278b58 100644
--- a/src/test/examples/testlibpq.c
+++ b/src/test/examples/testlibpq.c
@@ -29,7 +29,7 @@ main()
#ifdef DEBUG
FILE *debug;
-#endif /* DEBUG */
+#endif /* DEBUG */
PGconn *conn;
PGresult *res;
@@ -61,7 +61,7 @@ main()
#ifdef DEBUG
debug = fopen("/tmp/trace.out", "w");
PQtrace(conn, debug);
-#endif /* DEBUG */
+#endif /* DEBUG */
/* start a transaction block */
res = PQexec(conn, "BEGIN");
@@ -128,7 +128,7 @@ main()
#ifdef DEBUG
fclose(debug);
-#endif /* DEBUG */
+#endif /* DEBUG */
exit(0);
}