diff options
Diffstat (limited to 'bundle.c')
| -rw-r--r-- | bundle.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -262,9 +262,9 @@ int verify_bundle(struct repository *r, r = &header->references; printf_ln(Q_("The bundle contains this ref:", - "The bundle contains these %d refs:", + "The bundle contains these %"PRIuMAX" refs:", r->nr), - r->nr); + (uintmax_t)r->nr); list_refs(r, 0, NULL); if (header->filter.choice) { @@ -277,9 +277,9 @@ int verify_bundle(struct repository *r, printf_ln(_("The bundle records a complete history.")); } else { printf_ln(Q_("The bundle requires this ref:", - "The bundle requires these %d refs:", + "The bundle requires these %"PRIuMAX" refs:", r->nr), - r->nr); + (uintmax_t)r->nr); list_refs(r, 0, NULL); } } |
