Skip to content

Commit 747781f

Browse files
committed
pg_basebackup: Remove redundant newline in error message
1 parent 2cb9ec1 commit 747781f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_basebackup/streamutil.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ GetConnection(void)
182182

183183
if (PQstatus(tmpconn) != CONNECTION_OK)
184184
{
185-
fprintf(stderr, _("%s: could not connect to server: %s\n"),
185+
fprintf(stderr, _("%s: could not connect to server: %s"),
186186
progname, PQerrorMessage(tmpconn));
187187
PQfinish(tmpconn);
188188
free(values);

0 commit comments

Comments
 (0)