From 7a37a9308b18de7a293b27f8695ee11b589090a7 Mon Sep 17 00:00:00 2001 From: Petteri Aimonen Date: Thu, 28 Sep 2023 13:46:19 +0300 Subject: [PATCH] adjtime: Fix wrong printf format when using CONFIG_SYSTEM_TIME64 --- examples/adjtime/adjtime_main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/adjtime/adjtime_main.c b/examples/adjtime/adjtime_main.c index 26e9a481d09..a897fa15310 100644 --- a/examples/adjtime/adjtime_main.c +++ b/examples/adjtime/adjtime_main.c @@ -148,7 +148,7 @@ int main(int argc, FAR char *argv[]) parse_args(&delta, argc, argv); printf("Delta time is %ld seconds and %ld micro seconds.\n", - delta.tv_sec, delta.tv_usec); + (long)delta.tv_sec, delta.tv_usec); /* Call adjtime function. */ @@ -160,7 +160,7 @@ int main(int argc, FAR char *argv[]) else { printf("Returned olddelta is %ld seconds and %ld micro seconds.\n", - olddelta.tv_sec, olddelta.tv_usec); + (long)olddelta.tv_sec, olddelta.tv_usec); } return ret;