@@ -528,7 +528,7 @@ MemoryContextStatsDetail(MemoryContext context, int max_children,
528528
529529 if (print_to_stderr )
530530 fprintf (stderr ,
531- "Grand total: %zu bytes in %zd blocks; %zu free (%zd chunks); %zu used\n" ,
531+ "Grand total: %zu bytes in %zu blocks; %zu free (%zu chunks); %zu used\n" ,
532532 grand_totals .totalspace , grand_totals .nblocks ,
533533 grand_totals .freespace , grand_totals .freechunks ,
534534 grand_totals .totalspace - grand_totals .freespace );
@@ -547,7 +547,7 @@ MemoryContextStatsDetail(MemoryContext context, int max_children,
547547 ereport (LOG_SERVER_ONLY ,
548548 (errhidestmt (true),
549549 errhidecontext (true),
550- errmsg_internal ("Grand total: %zu bytes in %zd blocks; %zu free (%zd chunks); %zu used" ,
550+ errmsg_internal ("Grand total: %zu bytes in %zu blocks; %zu free (%zu chunks); %zu used" ,
551551 grand_totals .totalspace , grand_totals .nblocks ,
552552 grand_totals .freespace , grand_totals .freechunks ,
553553 grand_totals .totalspace - grand_totals .freespace )));
@@ -612,7 +612,7 @@ MemoryContextStatsInternal(MemoryContext context, int level,
612612 for (i = 0 ; i <= level ; i ++ )
613613 fprintf (stderr , " " );
614614 fprintf (stderr ,
615- "%d more child contexts containing %zu total in %zd blocks; %zu free (%zd chunks); %zu used\n" ,
615+ "%d more child contexts containing %zu total in %zu blocks; %zu free (%zu chunks); %zu used\n" ,
616616 ichild - max_children ,
617617 local_totals .totalspace ,
618618 local_totals .nblocks ,
@@ -624,7 +624,7 @@ MemoryContextStatsInternal(MemoryContext context, int level,
624624 ereport (LOG_SERVER_ONLY ,
625625 (errhidestmt (true),
626626 errhidecontext (true),
627- errmsg_internal ("level: %d; %d more child contexts containing %zu total in %zd blocks; %zu free (%zd chunks); %zu used" ,
627+ errmsg_internal ("level: %d; %d more child contexts containing %zu total in %zu blocks; %zu free (%zu chunks); %zu used" ,
628628 level ,
629629 ichild - max_children ,
630630 local_totals .totalspace ,
0 commit comments