As long as we are casting to a wider type, we should cast to the one
with the correct signed-ness.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
v->s = xstrdup(type_name(oi->type));
else if (!strcmp(name, "objectsize:disk")) {
v->value = oi->disk_size;
- v->s = xstrfmt("%"PRIuMAX, (intmax_t)oi->disk_size);
+ v->s = xstrfmt("%"PRIuMAX, (uintmax_t)oi->disk_size);
} else if (!strcmp(name, "objectsize")) {
v->value = oi->size;
v->s = xstrfmt("%lu", oi->size);