summaryrefslogtreecommitdiff
path: root/src/test/examples
diff options
context:
space:
mode:
authorBruce Momjian2001-11-05 17:46:40 +0000
committerBruce Momjian2001-11-05 17:46:40 +0000
commitea08e6cd5542cb269ecd3e735f1dfa3bb61fbc4f (patch)
treebf6b60c08be3ddf5a40e110e8276dc2d45b1431c /src/test/examples
parent34153b205265e2e831c1e3ee02be0fc88fa41710 (diff)
New pgindent run with fixes suggested by Tom. Patch manually reviewed,
initdb/regression tests pass.
Diffstat (limited to 'src/test/examples')
-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 b3678005f5..ca5ebbafba 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;
}