Fix incorrect format placeholder

This commit is contained in:
Peter Eisentraut 2021-10-13 08:20:59 +02:00
parent fa66b6dee0
commit 780054bf31
1 changed files with 1 additions and 1 deletions

View File

@ -5410,7 +5410,7 @@ parseScriptWeight(const char *option, char **script)
}
if (wtmp > INT_MAX || wtmp < 0)
{
pg_log_fatal("weight specification out of range (0 .. %u): %lld",
pg_log_fatal("weight specification out of range (0 .. %d): %lld",
INT_MAX, (long long) wtmp);
exit(1);
}