mirror of
https://github.com/postgres/postgres.git
synced 2025-11-09 06:21:09 +03:00
Cast some printf arguments to avoid possibly-nonportable behavior.
Per compiler warnings on buildfarm member black_firefly.
This commit is contained in:
@@ -1103,7 +1103,7 @@ BaseBackup(void)
|
||||
if (r != bgchild)
|
||||
{
|
||||
fprintf(stderr, _("%s: child %i died, expected %i\n"),
|
||||
progname, r, bgchild);
|
||||
progname, r, (int) bgchild);
|
||||
disconnect_and_exit(1);
|
||||
}
|
||||
if (!WIFEXITED(status))
|
||||
|
||||
Reference in New Issue
Block a user