diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2018-12-29 13:02:51 +0100 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2018-12-29 13:03:22 +0100 |
commit | af99ad191a3cee6fd565552574acb07fad53eb37 (patch) | |
tree | c8652f34161717781cdaeb8594d610d39f91276a /src | |
parent | f256995e33d2d1074c767a0b38a2a2ed2a583161 (diff) |
pg_rewind: Add missing newline to error message
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_rewind/pg_rewind.c | 2 |
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 4bd1a759734..08528dca3f8 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); |