Skip to content

Commit c768cf6

Browse files
committed
pg_basebackup: Add missing newline to error message
1 parent 176c70b commit c768cf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_basebackup/pg_basebackup.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ ReceiveAndUnpackTarFile(PGconn *conn, PGresult *res, int rownum)
512512
{
513513
if (PQgetlength(res, rownum, 1) >= MAXPGPATH)
514514
{
515-
fprintf(stderr, _("%s: received invalid directory (too long): %s"),
515+
fprintf(stderr, _("%s: received invalid directory (too long): %s\n"),
516516
progname, PQgetvalue(res, rownum, 1));
517517
disconnect_and_exit(1);
518518
}

0 commit comments

Comments
 (0)