mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Fix incorrect format placeholder
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user