pkarashchenko commented on code in PR #2101: URL: https://github.com/apache/nuttx-apps/pull/2101#discussion_r1341924770
########## 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); Review Comment: Or choose printf specifier based of `CONFIG_SYSTEM_TIME64` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org