Change uint64_t to uintmax_t

This commit is contained in:
Aaron Marcher
2018-07-07 10:50:25 +02:00
parent d76b1a21fc
commit 43a12832a3
9 changed files with 45 additions and 45 deletions

2
util.c
View File

@ -94,7 +94,7 @@ bprintf(const char *fmt, ...)
}
const char *
fmt_human(uint64_t num, int base)
fmt_human(uintmax_t num, int base)
{
double scaled;
size_t i, prefixlen;