Avoid this warning on OpenBSD: CC tests/rtc-test.o /src/qemu/tests/rtc-test.c: In function 'check_time': /src/qemu/tests/rtc-test.c:171: warning: format '%ld' expects type 'long int', but argument 2 has type 'time_t' /src/qemu/tests/rtc-test.c:173: warning: format '%ld' expects type 'long int', but argument 2 has type 'time_t'
Signed-off-by: Blue Swirl <blauwir...@gmail.com> --- tests/rtc-test.c | 6 ++++-- 1 files changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/rtc-test.c b/tests/rtc-test.c index c32b36a..a5d4519 100644 --- a/tests/rtc-test.c +++ b/tests/rtc-test.c @@ -168,9 +168,11 @@ static void check_time(int wiggle) t = mktime(datep); s = mktime(&start); if (t < s) { - g_test_message("RTC is %ld second(s) behind wall-clock\n", (s - t)); + g_test_message("RTC is %ld second(s) behind wall-clock\n", + (long)(s - t)); } else { - g_test_message("RTC is %ld second(s) ahead of wall-clock\n", (t - s)); + g_test_message("RTC is %ld second(s) ahead of wall-clock\n", + (long)(t - s)); } g_assert_cmpint(ABS(t - s), <=, wiggle); -- 1.7.9