diff options
author | Peter Eisentraut | 2015-06-23 00:39:41 +0000 |
---|---|---|
committer | Peter Eisentraut | 2015-06-23 00:40:40 +0000 |
commit | 747781f25e7eaa2e5cb5ed69bdae3e5f61795d2e (patch) | |
tree | 1484389f46b11eb8000c94b500e386ff4197aaaf | |
parent | 2cb9ec1bcb35dd6b4cf7a4a325aaa9791444e69d (diff) |
pg_basebackup: Remove redundant newline in error message
-rw-r--r-- | src/bin/pg_basebackup/streamutil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_basebackup/streamutil.c b/src/bin/pg_basebackup/streamutil.c index ac84e6d360e..0ed61440b09 100644 --- a/src/bin/pg_basebackup/streamutil.c +++ b/src/bin/pg_basebackup/streamutil.c @@ -182,7 +182,7 @@ GetConnection(void) if (PQstatus(tmpconn) != CONNECTION_OK) { - fprintf(stderr, _("%s: could not connect to server: %s\n"), + fprintf(stderr, _("%s: could not connect to server: %s"), progname, PQerrorMessage(tmpconn)); PQfinish(tmpconn); free(values); |