summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2015-06-23 15:49:28 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2015-06-23 15:49:28 +0300
commit9cb36981fbbf2f298db2476101f4475c52d00fbb (patch)
treebec4d337d6dfbea7b7a1c9d9645ee2c5d7bfb6b6 /src
parente98d635d5dbf25e5cde282af111af9fdffafa557 (diff)
Add missing newline to debug-message.
Michael Paquier
Diffstat (limited to 'src')
-rw-r--r--src/bin/pg_rewind/libpq_fetch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_rewind/libpq_fetch.c b/src/bin/pg_rewind/libpq_fetch.c
index df71069a9f8..37e515bc984 100644
--- a/src/bin/pg_rewind/libpq_fetch.c
+++ b/src/bin/pg_rewind/libpq_fetch.c
@@ -212,7 +212,7 @@ receiveFileChunks(const char *sql)
if (PQsendQueryParams(conn, sql, 0, NULL, NULL, NULL, NULL, 1) != 1)
pg_fatal("could not send query: %s", PQerrorMessage(conn));
- pg_log(PG_DEBUG, "getting file chunks");
+ pg_log(PG_DEBUG, "getting file chunks\n");
if (PQsetSingleRowMode(conn) != 1)
pg_fatal("could not set libpq connection to single row mode\n");