]> granicus.if.org Git - postgresql/commitdiff
pg_basebackup: Add missing newline to error message
authorPeter Eisentraut <peter_e@gmx.net>
Thu, 3 Oct 2013 01:25:39 +0000 (21:25 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Thu, 3 Oct 2013 01:25:39 +0000 (21:25 -0400)
src/bin/pg_basebackup/pg_basebackup.c

index f1544661c5ee8ee16ef4856586aa17eb84807780..722d54c995f4c47ded37565ad72dab229e5990a2 100644 (file)
@@ -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);
                }