From acfa1f50c24add6b9a78d94af21f9350150fb9c2 Mon Sep 17 00:00:00 2001 From: Aaron Marcher Date: Sat, 7 Jul 2018 11:08:26 +0200 Subject: Simplify format specifiers for uintmax_t --- components/uptime.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/uptime.c') 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 +#include #include #include @@ -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); } -- cgit v1.2.3