diff options
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 67acbf7..978f88f 100644 --- a/components/uptime.c +++ b/components/uptime.c @@ -1,5 +1,5 @@ /* See LICENSE file for copyright and license details. */ -#include <inttypes.h> +#include <stdint.h> #include <stdio.h> #include <time.h> @@ -19,5 +19,5 @@ uptime(void) h = uptime.tv_sec / 3600; m = uptime.tv_sec % 3600 / 60; - return bprintf("%" PRIuMAX "h %" PRIuMAX "m", h, m); + return bprintf("%juh %jum", h, m); } |