summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Hagander <magnus@hagander.net>2016-07-11 13:53:17 +0200
committerMagnus Hagander <magnus@hagander.net>2016-07-11 13:54:25 +0200
commit280a558ed6031a790bb9b6748965f4f6bce0930f (patch)
tree08998c0109fe992afb889f28f7ddc9a5e840df21
parent539b3dcb2622b135e1791151f4676c49823b6ee7 (diff)
Add missing newline in error message
-rw-r--r--contrib/pg_xlogdump/pg_xlogdump.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/pg_xlogdump/pg_xlogdump.c b/contrib/pg_xlogdump/pg_xlogdump.c
index 666c3409feb..11fd7130552 100644
--- a/contrib/pg_xlogdump/pg_xlogdump.c
+++ b/contrib/pg_xlogdump/pg_xlogdump.c
@@ -559,7 +559,7 @@ main(int argc, char **argv)
if (!verify_directory(private.inpath))
{
fprintf(stderr,
- "%s: path \"%s\" cannot be opened: %s",
+ "%s: path \"%s\" cannot be opened: %s\n",
progname, private.inpath, strerror(errno));
goto bad_argument;
}