Commit 6cf84628 authored by Peter Eisentraut's avatar Peter Eisentraut

pg_basebackup: Add missing newlines at end of lines

parent 4c0343d4
...@@ -271,7 +271,7 @@ existsTimeLineHistoryFile(char *basedir, TimeLineID tli) ...@@ -271,7 +271,7 @@ existsTimeLineHistoryFile(char *basedir, TimeLineID tli)
if (fd < 0) if (fd < 0)
{ {
if (errno != ENOENT) if (errno != ENOENT)
fprintf(stderr, _("%s: could not open timeline history file \"%s\": %s"), fprintf(stderr, _("%s: could not open timeline history file \"%s\": %s\n"),
progname, path, strerror(errno)); progname, path, strerror(errno));
return false; return false;
} }
...@@ -298,7 +298,7 @@ writeTimeLineHistoryFile(char *basedir, TimeLineID tli, char *filename, char *co ...@@ -298,7 +298,7 @@ writeTimeLineHistoryFile(char *basedir, TimeLineID tli, char *filename, char *co
TLHistoryFileName(histfname, tli); TLHistoryFileName(histfname, tli);
if (strcmp(histfname, filename) != 0) if (strcmp(histfname, filename) != 0)
{ {
fprintf(stderr, _("%s: server reported unexpected history file name for timeline %u: %s"), fprintf(stderr, _("%s: server reported unexpected history file name for timeline %u: %s\n"),
progname, tli, filename); progname, tli, filename);
return false; return false;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment