Skip to content

Commit

Permalink
fixup! survey: show some commits/trees/blobs histograms
Browse files Browse the repository at this point in the history
D'oh. Must end the varargs with a `NULL`...

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
  • Loading branch information
dscho committed Oct 8, 2024
1 parent dd84253 commit 7473add
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/survey.c
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ static void pretty_print_bin_table(const char *title_caption,
strbuf_addf(&sum_disk_size, "%"PRIuMAX, (uintmax_t)p->sum_disk_size);

insert_table_rowv(&table, bucket.buf,
cnt_seen.buf, sum_size.buf, sum_disk_size.buf);
cnt_seen.buf, sum_size.buf, sum_disk_size.buf, NULL);
}
strbuf_release(&bucket);
strbuf_release(&cnt_seen);
Expand Down

0 comments on commit 7473add

Please sign in to comment.