From 5c828307973366f424438b848d4cca6ef98c032e Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 27 Dec 2018 10:03:05 +0100 Subject: [PATCH] pg_dump: Add missing newline to error message --- src/bin/pg_dump/pg_backup_archiver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_dump/pg_backup_archiver.c b/src/bin/pg_dump/pg_backup_archiver.c index 58bd3805f4..2c2f6fb4a9 100644 --- a/src/bin/pg_dump/pg_backup_archiver.c +++ b/src/bin/pg_dump/pg_backup_archiver.c @@ -2698,7 +2698,7 @@ ReadToc(ArchiveHandle *AH) te->owner = ReadStr(AH); if (AH->version < K_VERS_1_9 || strcmp(ReadStr(AH), "true") == 0) write_msg(modulename, - "WARNING: restoring tables WITH OIDS is not supported anymore"); + "WARNING: restoring tables WITH OIDS is not supported anymore\n"); /* Read TOC entry dependencies */ if (AH->version >= K_VERS_1_5)