diff options
author | Junio C Hamano <gitster@pobox.com> | 2022-03-16 17:53:09 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-03-16 17:53:09 -0700 |
commit | 38bbb9e990e7290c286ad0a8ea250ab53470a374 (patch) | |
tree | 9643b7ecc0a51c01ade32df122f5d7e1d70d3aff /commit-graph.c | |
parent | Merge branch 'ab/racy-hooks' (diff) | |
parent | string-list API: change "nr" and "alloc" to "size_t" (diff) | |
download | tgif-38bbb9e990e7290c286ad0a8ea250ab53470a374.tar.xz |
Merge branch 'ab/string-list-count-in-size-t'
Count string_list items in size_t, not "unsigned int".
* ab/string-list-count-in-size-t:
string-list API: change "nr" and "alloc" to "size_t"
gettext API users: don't explicitly cast ngettext()'s "n"
Diffstat (limited to 'commit-graph.c')
-rw-r--r-- | commit-graph.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/commit-graph.c b/commit-graph.c index a99d9920b2..adffd020dd 100644 --- a/commit-graph.c +++ b/commit-graph.c @@ -1698,10 +1698,10 @@ static int fill_oids_from_packs(struct write_commit_graph_context *ctx, dirlen = packname.len; if (ctx->report_progress) { strbuf_addf(&progress_title, - Q_("Finding commits for commit graph in %d pack", - "Finding commits for commit graph in %d packs", + Q_("Finding commits for commit graph in %"PRIuMAX" pack", + "Finding commits for commit graph in %"PRIuMAX" packs", pack_indexes->nr), - pack_indexes->nr); + (uintmax_t)pack_indexes->nr); ctx->progress = start_delayed_progress(progress_title.buf, 0); ctx->progress_done = 0; } |