diff options
author | Aaron Marcher <me@drkhsh.at> | 2018-07-07 10:50:25 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-07-07 10:50:25 +0200 |
commit | 2eae958bb76e074f67b4a68dffcfd266164a2801 (patch) | |
tree | 28df6fc8f8aacd557b2c97a00a8cac321949c745 /util.h | |
parent | bab5b43abff8be8882f53537fc2c9d2a3df325d5 (diff) |
Change uint64_t to uintmax_t
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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, ...); |