mirror of
https://github.com/postgres/postgres.git
synced 2025-11-19 13:42:17 +03:00
Fix incorrect format placeholders
This commit is contained in:
@@ -1378,7 +1378,7 @@ AllocSetStats(MemoryContext context,
|
||||
char stats_string[200];
|
||||
|
||||
snprintf(stats_string, sizeof(stats_string),
|
||||
"%zu total in %zd blocks; %zu free (%zd chunks); %zu used",
|
||||
"%zu total in %zu blocks; %zu free (%zu chunks); %zu used",
|
||||
totalspace, nblocks, freespace, freechunks,
|
||||
totalspace - freespace);
|
||||
printfunc(context, passthru, stats_string, print_to_stderr);
|
||||
|
||||
Reference in New Issue
Block a user