Skip to content

Commit 87807c8

Browse files
authored
Merge branch 'main' into fix_GetDatabasePath_leak
2 parents 06ce5fa + 5b5f54f commit 87807c8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_rewind/pg_rewind.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1083,11 +1083,11 @@ get_target_dbid(const char *argv0)
10831083
if (ret == -1)
10841084
pg_fatal("The program \"postgres\" is needed by %s but was \n"
10851085
"not found in the same directory as \"%s\".\n"
1086-
"Check your installation.\n", progname, full_path);
1086+
"Check your installation.", progname, full_path);
10871087
else
10881088
pg_fatal("The program \"postgres\" was found by \"%s\"\n"
10891089
"but was not the same version as %s.\n"
1090-
"Check your installation.\n", full_path, progname);
1090+
"Check your installation.`", full_path, progname);
10911091
}
10921092

10931093
snprintf(cmd, MAXCMDLEN, "\"%s\" -D \"%s\" -C gp_dbid",

0 commit comments

Comments
 (0)