Skip to content

Commit 6cf8462

Browse files
committed
pg_basebackup: Add missing newlines at end of lines
1 parent 4c0343d commit 6cf8462

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_basebackup/receivelog.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ existsTimeLineHistoryFile(char *basedir, TimeLineID tli)
271271
if (fd < 0)
272272
{
273273
if (errno != ENOENT)
274-
fprintf(stderr, _("%s: could not open timeline history file \"%s\": %s"),
274+
fprintf(stderr, _("%s: could not open timeline history file \"%s\": %s\n"),
275275
progname, path, strerror(errno));
276276
return false;
277277
}
@@ -298,7 +298,7 @@ writeTimeLineHistoryFile(char *basedir, TimeLineID tli, char *filename, char *co
298298
TLHistoryFileName(histfname, tli);
299299
if (strcmp(histfname, filename) != 0)
300300
{
301-
fprintf(stderr, _("%s: server reported unexpected history file name for timeline %u: %s"),
301+
fprintf(stderr, _("%s: server reported unexpected history file name for timeline %u: %s\n"),
302302
progname, tli, filename);
303303
return false;
304304
}

0 commit comments

Comments
 (0)