From: Peter Eisentraut Date: Thu, 3 Oct 2013 01:25:39 +0000 (-0400) Subject: pg_basebackup: Add missing newline to error message X-Git-Tag: REL9_1_10~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c768cf616de9c32e154004e34dba20477112f996;p=postgresql pg_basebackup: Add missing newline to error message --- diff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_basebackup/pg_basebackup.c index f1544661c5..722d54c995 100644 --- a/src/bin/pg_basebackup/pg_basebackup.c +++ b/src/bin/pg_basebackup/pg_basebackup.c @@ -512,7 +512,7 @@ ReceiveAndUnpackTarFile(PGconn *conn, PGresult *res, int rownum) { if (PQgetlength(res, rownum, 1) >= MAXPGPATH) { - fprintf(stderr, _("%s: received invalid directory (too long): %s"), + fprintf(stderr, _("%s: received invalid directory (too long): %s\n"), progname, PQgetvalue(res, rownum, 1)); disconnect_and_exit(1); }