mirror of
https://github.com/postgres/postgres.git
synced 2025-07-07 00:36:50 +03:00
pg_basebackup: Add missing newlines to several error messages
This commit is contained in:
@ -313,7 +313,7 @@ writeTimeLineHistoryFile(char *basedir, TimeLineID tli, char *filename, char *co
|
||||
fd = open(tmppath, O_WRONLY | O_CREAT | PG_BINARY, S_IRUSR | S_IWUSR);
|
||||
if (fd < 0)
|
||||
{
|
||||
fprintf(stderr, _("%s: could not create timeline history file \"%s\": %s"),
|
||||
fprintf(stderr, _("%s: could not create timeline history file \"%s\": %s\n"),
|
||||
progname, tmppath, strerror(errno));
|
||||
return false;
|
||||
}
|
||||
@ -329,7 +329,7 @@ writeTimeLineHistoryFile(char *basedir, TimeLineID tli, char *filename, char *co
|
||||
unlink(tmppath);
|
||||
errno = save_errno;
|
||||
|
||||
fprintf(stderr, _("%s: could not write timeline history file \"%s\": %s"),
|
||||
fprintf(stderr, _("%s: could not write timeline history file \"%s\": %s\n"),
|
||||
progname, tmppath, strerror(errno));
|
||||
return false;
|
||||
}
|
||||
|
Reference in New Issue
Block a user