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)
{
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);