@@ -356,17 +356,17 @@ lazy_vacuum_rel(Relation onerel, VacuumStmt *vacstmt,
356356get_namespace_name (RelationGetNamespace (onerel )),
357357RelationGetRelationName (onerel ),
358358vacrelstats -> num_index_scans );
359- appendStringInfo (& buf ,_ ("pages: %d removed, %d remain\n" ),
359+ appendStringInfo (& buf ,_ ("pages: %u removed, %u remain\n" ),
360360vacrelstats -> pages_removed ,
361361vacrelstats -> rel_pages );
362362if (vacrelstats -> pinned_pages > 0 )
363363{
364364if (scan_all )
365- appendStringInfo (& buf ,_ ("waited for %d buffer pins\n" ),
365+ appendStringInfo (& buf ,_ ("waited for %u buffer pins\n" ),
366366vacrelstats -> pinned_pages );
367367else
368368appendStringInfo (& buf ,
369- _ ("skipped %d pages due to buffer pins\n" ),
369+ _ ("skipped %u pages due to buffer pins\n" ),
370370vacrelstats -> pinned_pages );
371371}
372372appendStringInfo (& buf ,
@@ -1132,7 +1132,7 @@ lazy_scan_heap(Relation onerel, LVRelStats *vacrelstats,
11321132if (vacrelstats -> pinned_pages > 0 )
11331133{
11341134if (scan_all )
1135- appendStringInfo (& buf ,_ ("Waited for %d buffer pins.\n" ),
1135+ appendStringInfo (& buf ,_ ("Waited for %u buffer pins.\n" ),
11361136vacrelstats -> pinned_pages );
11371137else
11381138appendStringInfo (& buf ,_ ("Skipped %u pages due to buffer pins.\n" ),