summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorAaron Marcher <me@drkhsh.at>2018-07-07 10:50:25 +0200
committerAaron Marcher <me@drkhsh.at>2018-07-07 10:50:25 +0200
commit43a12832a343747b7317987b552a87eb8ed5b42d (patch)
tree28df6fc8f8aacd557b2c97a00a8cac321949c745 /util.c
parentd76b1a21fc014395cf9f7bd4e14180a3a0945e9c (diff)
Change uint64_t to uintmax_t
Diffstat (limited to 'util.c')
-rw-r--r--util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.c b/util.c
index 4c37ab0..eaa3001 100644
--- a/util.c
+++ b/util.c
@@ -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;