aboutsummaryrefslogtreecommitdiff
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 b3678005f5f..ca5ebbafba6 100644
--- a/src/test/examples/testlibpq.c
+++ b/src/test/examples/testlibpq.c
@@ -28,7 +28,7 @@ main()
#ifdef DEBUG
FILE *debug;
-#endif /* DEBUG */
+#endif /* DEBUG */
PGconn *conn;
PGresult *res;
@@ -60,7 +60,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");
@@ -127,7 +127,7 @@ main()
#ifdef DEBUG
fclose(debug);
-#endif /* DEBUG */
+#endif /* DEBUG */
return 0;
}