aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/mmgr/slab.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2021-12-22 08:34:10 +0100
committerPeter Eisentraut <peter@eisentraut.org>2021-12-22 08:42:33 +0100
commitdfaa346c7c00ff8a3fd8ea436a7d5be7527e67cb (patch)
tree0bd6c75cbe565db60bb19051e100c604b32e88fb /src/backend/utils/mmgr/slab.c
parentfc95d35b9429096ec4d028d79dcf1fb8b5d4b16e (diff)
downloadpostgresql-dfaa346c7c00ff8a3fd8ea436a7d5be7527e67cb.tar.gz
postgresql-dfaa346c7c00ff8a3fd8ea436a7d5be7527e67cb.zip
Fix incorrect format placeholders
Diffstat (limited to 'src/backend/utils/mmgr/slab.c')
-rw-r--r--src/backend/utils/mmgr/slab.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/mmgr/slab.c b/src/backend/utils/mmgr/slab.c
index 553dd7f6674..04783b83856 100644
--- a/src/backend/utils/mmgr/slab.c
+++ b/src/backend/utils/mmgr/slab.c
@@ -671,7 +671,7 @@ SlabStats(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);