summaryrefslogtreecommitdiff
path: root/util.h
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.h
parentd76b1a21fc014395cf9f7bd4e14180a3a0945e9c (diff)
Change uint64_t to uintmax_t
Diffstat (limited to 'util.h')
-rw-r--r--util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/util.h b/util.h
index af12962..7f1f26c 100644
--- a/util.h
+++ b/util.h
@@ -12,5 +12,5 @@ void die(const char *, ...);
int esnprintf(char *str, size_t size, const char *fmt, ...);
const char *bprintf(const char *fmt, ...);
-const char *fmt_human(uint64_t num, int base);
+const char *fmt_human(uintmax_t num, int base);
int pscanf(const char *path, const char *fmt, ...);