summaryrefslogtreecommitdiff
path: root/rcS.c
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-07-20 15:35:26 -0700
committerDaniel Golle <daniel@makrotopia.org>2020-07-20 23:52:07 +0100
commit48777def2c5214827bba923dcb72a2c306d717ff (patch)
tree8a56ace5128623ab810e6260d4ca872b7d5e003b /rcS.c
parent66ae2d947ea463c53de1bf2ed5491c9926694f02 (diff)
downloadprocd-48777def2c5214827bba923dcb72a2c306d717ff.tar.gz
rcS: cast format string to int64_t
musl 1.2.0 turns time_t into a 64-bit value, even on 32-bit. This makes it compatible. Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'rcS.c')
-rw-r--r--rcS.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/rcS.c b/rcS.c
index c2e1abb..2851fae 100644
--- a/rcS.c
+++ b/rcS.c
@@ -18,6 +18,7 @@
#include <libubox/uloop.h>
#include <libubox/runqueue.h>
+#include <inttypes.h>
#include <stdlib.h>
#include <stdio.h>
#include <unistd.h>
@@ -118,7 +119,7 @@ static void q_initd_complete(struct runqueue *q, struct runqueue_task *p)
ts_res.tv_nsec += 1000000000;
}
- DEBUG(2, "stop %s %s - took %lu.%09lus\n", s->file, s->param, ts_res.tv_sec, ts_res.tv_nsec);
+ DEBUG(2, "stop %s %s - took %" PRId64 ".%09" PRId64 "s\n", s->file, s->param, (int64_t)ts_res.tv_sec, (int64_t)ts_res.tv_nsec);
ustream_free(&s->fd.stream);
close(s->fd.fd.fd);
free(s);