pg_basebackup: Remove redundant newline in error message

pull/14/head
Peter Eisentraut 10 years ago
parent 2cb9ec1bcb
commit 747781f25e
  1. 2
      src/bin/pg_basebackup/streamutil.c

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

Loading…
Cancel
Save