Skip to content

Commit 095e83d

Browse files
committed
pg_upgrade: Add missing newline in output, another one
This came from the backport of commit f295494, but older branches require the explicit newline in messages (see commit 7652353).
1 parent b6641f7 commit 095e83d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_upgrade/check.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ check_for_not_null_inheritance(ClusterInfo *cluster)
10751075
for (int i = 0; i < ntup; i++)
10761076
{
10771077
if (script == NULL && (script = fopen_priv(output_path, "w")) == NULL)
1078-
pg_fatal("could not open file \"%s\": %s", output_path, strerror(errno));
1078+
pg_fatal("could not open file \"%s\": %s\n", output_path, strerror(errno));
10791079
if (!db_used)
10801080
{
10811081
fprintf(script, "In database: %s\n", active_db->db_name);

0 commit comments

Comments
 (0)