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
commit2eae958bb76e074f67b4a68dffcfd266164a2801 (patch)
tree28df6fc8f8aacd557b2c97a00a8cac321949c745 /util.h
parentbab5b43abff8be8882f53537fc2c9d2a3df325d5 (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, ...);