From: Peter Eisentraut Date: Sat, 29 Dec 2018 12:02:51 +0000 (+0100) Subject: pg_rewind: Add missing newline to error message X-Git-Tag: REL_11_2~97 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=025cc86b77052ee130519ce2dcfa52abeedc5bef;p=thirdparty%2Fpostgresql.git pg_rewind: Add missing newline to error message --- diff --git a/src/bin/pg_rewind/pg_rewind.c b/src/bin/pg_rewind/pg_rewind.c index b0fd3f66ace..897365f9288 100644 --- a/src/bin/pg_rewind/pg_rewind.c +++ b/src/bin/pg_rewind/pg_rewind.c @@ -479,7 +479,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);