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 /components/uptime.c | |
parent | d76b1a21fc014395cf9f7bd4e14180a3a0945e9c (diff) |
Change uint64_t to uintmax_t
Diffstat (limited to 'components/uptime.c')
-rw-r--r-- | components/uptime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/uptime.c b/components/uptime.c index f957f17..67acbf7 100644 --- a/components/uptime.c +++ b/components/uptime.c @@ -8,7 +8,7 @@ const char * uptime(void) { - uint64_t h, m; + uintmax_t h, m; struct timespec uptime; if (clock_gettime(CLOCK_BOOTTIME, &uptime) < 0) { @@ -19,5 +19,5 @@ uptime(void) h = uptime.tv_sec / 3600; m = uptime.tv_sec % 3600 / 60; - return bprintf("%" PRIu64 "h %" PRIu64 "m", h, m); + return bprintf("%" PRIuMAX "h %" PRIuMAX "m", h, m); } |