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:02:51 +0100 |
commit | 1a4eba4e246480466c04feb81f76866e7dcb2827 (patch) | |
tree | bf9ec29f04d77de8e76df572b6ad8626e76c47ea | |
parent | e3299d36a938c7af386b240f318c7b9e55bdc92d (diff) | |
download | postgresql-1a4eba4e246480466c04feb81f76866e7dcb2827.tar.gz postgresql-1a4eba4e246480466c04feb81f76866e7dcb2827.zip |
pg_rewind: Add missing newline to error message
-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 96531063869..55226d1dc02 100644 --- a/src/bin/pg_rewind/pg_rewind.c +++ b/src/bin/pg_rewind/pg_rewind.c @@ -488,7 +488,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); |