Skip to content

Commit 780054b

Browse files
committed
Fix incorrect format placeholder
1 parent fa66b6d commit 780054b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pgbench/pgbench.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5410,7 +5410,7 @@ parseScriptWeight(const char *option, char **script)
54105410
}
54115411
if (wtmp > INT_MAX || wtmp < 0)
54125412
{
5413-
pg_log_fatal("weight specification out of range (0 .. %u): %lld",
5413+
pg_log_fatal("weight specification out of range (0 .. %d): %lld",
54145414
INT_MAX, (long long) wtmp);
54155415
exit(1);
54165416
}

0 commit comments

Comments
 (0)