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 <[email protected]> --- v2: Changed to PRId64 rcS.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rcS.c b/rcS.c index c2e1abb..f6d210c 100644 --- a/rcS.c +++ b/rcS.c @@ -118,7 +118,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); -- 2.25.1 _______________________________________________ openwrt-devel mailing list [email protected] https://lists.openwrt.org/mailman/listinfo/openwrt-devel
