1
0
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:
Peter Eisentraut
2021-12-22 08:34:10 +01:00
parent fc95d35b94
commit dfaa346c7c
4 changed files with 7 additions and 7 deletions

View File

@@ -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);