summaryrefslogtreecommitdiff
path: root/components/uptime.c
diff options
context:
space:
mode:
authorAaron Marcher <me@drkhsh.at>2018-07-07 11:08:26 +0200
committerAaron Marcher <me@drkhsh.at>2018-07-07 11:08:26 +0200
commit2b0df5f3d490f58341e2e828f412298adfabae92 (patch)
tree2153a871d07704dcae0eec15b1d8ceab04724fbd /components/uptime.c
parent5316c498c721e25dace81a6df30121abe9eefc7b (diff)
Simplify format specifiers for uintmax_t
Diffstat (limited to 'components/uptime.c')
-rw-r--r--components/uptime.c4
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);
}