File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -392,19 +392,19 @@ static void survey_report_plaintext_reachable_object_summary(struct survey_conte
392
392
strvec_push (& table .header , _ ("Object Type" ));
393
393
strvec_push (& table .header , _ ("Count" ));
394
394
395
- fmt = xstrfmt ("%" PRIuMAX "" , objs -> tags_nr );
395
+ fmt = xstrfmt ("%" PRIuMAX "" , ( uintmax_t ) objs -> tags_nr );
396
396
insert_table_rowv (& table , _ ("Tags" ), fmt , NULL );
397
397
free (fmt );
398
398
399
- fmt = xstrfmt ("%" PRIuMAX "" , objs -> commits_nr );
399
+ fmt = xstrfmt ("%" PRIuMAX "" , ( uintmax_t ) objs -> commits_nr );
400
400
insert_table_rowv (& table , _ ("Commits" ), fmt , NULL );
401
401
free (fmt );
402
402
403
- fmt = xstrfmt ("%" PRIuMAX "" , objs -> trees_nr );
403
+ fmt = xstrfmt ("%" PRIuMAX "" , ( uintmax_t ) objs -> trees_nr );
404
404
insert_table_rowv (& table , _ ("Trees" ), fmt , NULL );
405
405
free (fmt );
406
406
407
- fmt = xstrfmt ("%" PRIuMAX "" , objs -> blobs_nr );
407
+ fmt = xstrfmt ("%" PRIuMAX "" , ( uintmax_t ) objs -> blobs_nr );
408
408
insert_table_rowv (& table , _ ("Blobs" ), fmt , NULL );
409
409
free (fmt );
410
410
You can’t perform that action at this time.
0 commit comments