From 025cc86b77052ee130519ce2dcfa52abeedc5bef Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sat, 29 Dec 2018 13:02:51 +0100 Subject: [PATCH] pg_rewind: Add missing newline to error message --- src/bin/pg_rewind/pg_rewind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_rewind/pg_rewind.c b/src/bin/pg_rewind/pg_rewind.c index b0fd3f66ac..897365f928 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); -- 2.40.0