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
commitacfa1f50c24add6b9a78d94af21f9350150fb9c2 (patch)
tree2153a871d07704dcae0eec15b1d8ceab04724fbd /components/uptime.c
parentc2492c3f99d9d434a6f935dea8e97fa27cdd2adc (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);
}