diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2013-04-24 22:51:10 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2013-04-24 22:51:10 -0400 |
commit | 6cf84628342ca859a15c9b1576fdbebc3575a0d2 (patch) | |
tree | 94aa08c8325bb50175a7f049e5a127b2dfd41cc3 /src | |
parent | 4c0343d4af716813388a585390f5660c17a848f9 (diff) | |
download | postgresql-6cf84628342ca859a15c9b1576fdbebc3575a0d2.tar.gz postgresql-6cf84628342ca859a15c9b1576fdbebc3575a0d2.zip |
pg_basebackup: Add missing newlines at end of lines
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_basebackup/receivelog.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/pg_basebackup/receivelog.c b/src/bin/pg_basebackup/receivelog.c index 2bf4df961ea..b681efc7e6b 100644 --- a/src/bin/pg_basebackup/receivelog.c +++ b/src/bin/pg_basebackup/receivelog.c @@ -271,7 +271,7 @@ existsTimeLineHistoryFile(char *basedir, TimeLineID tli) if (fd < 0) { 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)); return false; } @@ -298,7 +298,7 @@ writeTimeLineHistoryFile(char *basedir, TimeLineID tli, char *filename, char *co TLHistoryFileName(histfname, tli); 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); return false; } |