diff options
Diffstat (limited to 'src/test/examples/testlo64.c')
-rw-r--r-- | src/test/examples/testlo64.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/test/examples/testlo64.c b/src/test/examples/testlo64.c index 6334171163a..23e91094468 100644 --- a/src/test/examples/testlo64.c +++ b/src/test/examples/testlo64.c @@ -249,8 +249,7 @@ main(int argc, char **argv) /* check to see that the backend connection was successfully made */ if (PQstatus(conn) != CONNECTION_OK) { - fprintf(stderr, "Connection to database failed: %s", - PQerrorMessage(conn)); + fprintf(stderr, "%s", PQerrorMessage(conn)); exit_nicely(conn); } |