drivers/syslog/vsyslog.c: Fix a printf format warning

This commit is contained in:
YAMAMOTO Takashi 2020-11-10 23:18:01 +09:00 committed by Xiang Xiao
parent 56a79d7248
commit f8d6a85f90
1 changed files with 2 additions and 2 deletions

View File

@ -132,8 +132,8 @@ int nx_vsyslog(int priority, FAR const IPTR char *fmt, FAR va_list *ap)
#if defined(CONFIG_SYSLOG_TIMESTAMP)
/* Pre-pend the message with the current time, if available */
ret = lib_sprintf(&stream.public, "[%5d.%06d] ",
ts.tv_sec, ts.tv_nsec / 1000);
ret = lib_sprintf(&stream.public, "[%5jd.%06ld] ",
(uintmax_t)ts.tv_sec, ts.tv_nsec / 1000);
#else
ret = 0;
#endif