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 | 43a12832a343747b7317987b552a87eb8ed5b42d (patch) | |
tree | 28df6fc8f8aacd557b2c97a00a8cac321949c745 /util.h | |
parent | d76b1a21fc014395cf9f7bd4e14180a3a0945e9c (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, ...); |