From c768cf616de9c32e154004e34dba20477112f996 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 2 Oct 2013 21:25:39 -0400 Subject: [PATCH] pg_basebackup: Add missing newline to error message --- src/bin/pg_basebackup/pg_basebackup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.40.0