From 747781f25e7eaa2e5cb5ed69bdae3e5f61795d2e Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 22 Jun 2015 20:39:41 -0400 Subject: [PATCH] pg_basebackup: Remove redundant newline in error message --- src/bin/pg_basebackup/streamutil.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_basebackup/streamutil.c b/src/bin/pg_basebackup/streamutil.c index ac84e6d360..0ed61440b0 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);