Skip to content

Commit

Permalink
fixup! survey: summarize total sizes by object type
Browse files Browse the repository at this point in the history
  • Loading branch information
dscho committed Sep 16, 2024
1 parent b5c2265 commit fee8f88
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builtin/survey.c
Original file line number Diff line number Diff line change
Expand Up @@ -413,9 +413,9 @@ static void survey_report_object_sizes(const char *title,

for (size_t i = 0; i < summary_nr; i++) {
insert_table_rowv(&table, xstrdup(summary[i].label),
xstrfmt("%"PRIuMAX, summary[i].nr),
xstrfmt("%"PRIuMAX, summary[i].disk_size),
xstrfmt("%"PRIuMAX, summary[i].inflated_size),
xstrfmt("%"PRIuMAX, (uintmax_t)summary[i].nr),
xstrfmt("%"PRIuMAX, (uintmax_t)summary[i].disk_size),
xstrfmt("%"PRIuMAX, (uintmax_t)summary[i].inflated_size),
NULL);
}

Expand Down

0 comments on commit fee8f88

Please sign in to comment.