summaryrefslogtreecommitdiff
path: root/src/bin/pg_rewind/pg_rewind.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2016-06-07 14:18:08 -0400
committerPeter Eisentraut <peter_e@gmx.net>2016-06-07 14:18:55 -0400
commit5c6d2a5e7c83bf6e157fe4ca0ab9b123012289e9 (patch)
tree4674cd6272ec253c3dec2842f19a4e17d9054361 /src/bin/pg_rewind/pg_rewind.c
parentdf7cc3976db6980d115d1dc6556f021d9783d579 (diff)
downloadpostgresql-5c6d2a5e7c83bf6e157fe4ca0ab9b123012289e9.tar.gz
Message style and wording fixes
Diffstat (limited to 'src/bin/pg_rewind/pg_rewind.c')
-rw-r--r--src/bin/pg_rewind/pg_rewind.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_rewind/pg_rewind.c b/src/bin/pg_rewind/pg_rewind.c
index 4004bbfc77..f472813a64 100644
--- a/src/bin/pg_rewind/pg_rewind.c
+++ b/src/bin/pg_rewind/pg_rewind.c
@@ -459,7 +459,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");
history = rewind_parseTimeLineHistory(histfile, tli, nentries);
pg_free(histfile);
@@ -685,7 +685,7 @@ syncTargetDirectory(const char *argv0)
strlcpy(full_path, progname, sizeof(full_path));
if (ret == -1)
- pg_fatal("The program \"initdb\" is needed by %s but was \n"
+ pg_fatal("The program \"initdb\" is needed by %s but was\n"
"not found in the same directory as \"%s\".\n"
"Check your installation.\n", progname, full_path);
else