summaryrefslogtreecommitdiff
path: root/src/bin/pg_basebackup/streamutil.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-05-05 10:51:38 -0400
committerPeter Eisentraut <peter_e@gmx.net>2018-05-05 10:53:28 -0400
commit7ff50cf60b20fa8c333e427f5e61b59f913844fe (patch)
treededa49a101949cc6d6e98136c705e1d2dcccffef /src/bin/pg_basebackup/streamutil.c
parent7b7521d6577295413db2088beac6136d39d61e4e (diff)
Remove extra newlines after PQerrorMessage()
Diffstat (limited to 'src/bin/pg_basebackup/streamutil.c')
-rw-r--r--src/bin/pg_basebackup/streamutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/streamutil.c b/src/bin/pg_basebackup/streamutil.c
index 933091ff1f8..8ef133d119c 100644
--- a/src/bin/pg_basebackup/streamutil.c
+++ b/src/bin/pg_basebackup/streamutil.c
@@ -222,7 +222,7 @@ GetConnection(void)
res = PQexec(tmpconn, ALWAYS_SECURE_SEARCH_PATH_SQL);
if (PQresultStatus(res) != PGRES_TUPLES_OK)
{
- fprintf(stderr, _("%s: could not clear search_path: %s\n"),
+ fprintf(stderr, _("%s: could not clear search_path: %s"),
progname, PQerrorMessage(tmpconn));
PQclear(res);
PQfinish(tmpconn);