summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut2018-12-29 12:02:51 +0000
committerPeter Eisentraut2018-12-29 12:03:28 +0000
commit55fde981c299550d96742799f1bfa36220cc1b7c (patch)
tree3ec2c28684799b1d1d7db6aa74551e0888dc863e
parentaa2e84d2cc8dd08f3531a1f36eaa0490117e5baa (diff)
pg_rewind: Add missing newline to error message
-rw-r--r--src/bin/pg_rewind/pg_rewind.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/pg_rewind/pg_rewind.c b/src/bin/pg_rewind/pg_rewind.c
index dd62dd05491..ce1765d0d14 100644
--- a/src/bin/pg_rewind/pg_rewind.c
+++ b/src/bin/pg_rewind/pg_rewind.c
@@ -466,7 +466,7 @@ getTimelineHistory(ControlFileData *controlFile, int *nentries)
else if (controlFile == &ControlFile_target)
histfile = slurpFile(datadir_target, path, NULL);
else
- pg_fatal("invalid control file");
+ pg_fatal("invalid control file\n");
history = rewind_parseTimeLineHistory(histfile, tli, nentries);
pg_free(histfile);