1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-03 22:24:49 +03:00

pg_basebackup: Remove redundant newline in error message

This commit is contained in:
Peter Eisentraut 2015-06-22 20:39:41 -04:00
parent 2cb9ec1bcb
commit 747781f25e

View File

@ -182,7 +182,7 @@ GetConnection(void)
if (PQstatus(tmpconn) != CONNECTION_OK) 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)); progname, PQerrorMessage(tmpconn));
PQfinish(tmpconn); PQfinish(tmpconn);
free(values); free(values);