forked from nuttx/nuttx-update
drivers/syslog: remove redundant 'int' cast
Signed-off-by: Petro Karashchenko <petro.karashchenko@gmail.com>
This commit is contained in:
parent
85a46bf599
commit
2ca40e14e9
1 changed files with 1 additions and 1 deletions
|
@ -219,7 +219,7 @@ int nx_vsyslog(int priority, FAR const IPTR char *fmt, FAR va_list *ap)
|
|||
#if defined(CONFIG_SYSLOG_PROCESSID)
|
||||
/* Prepend the Thread ID */
|
||||
|
||||
, (int)nxsched_gettid()
|
||||
, nxsched_gettid()
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_SYSLOG_COLOR_OUTPUT)
|
||||
|
|
Loading…
Reference in a new issue