summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-11-25 17:22:52 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-11-25 17:22:52 -0600
commitf9fea7cc72b6fdeece853f6753e8a6395d281c32 (patch)
tree7f751c82860f7c984dec0e55ae548554346dcc0b
parent1fe9131bd2bbdc9e4689631428dfbc8bb2f12d5b (diff)
downloadnuttx-f9fea7cc72b6fdeece853f6753e8a6395d281c32.tar.gz
nuttx-f9fea7cc72b6fdeece853f6753e8a6395d281c32.tar.bz2
nuttx-f9fea7cc72b6fdeece853f6753e8a6395d281c32.zip
Another fix misthink in big cppcheck changed
-rw-r--r--nuttx/libc/syslog/lib_syslog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/libc/syslog/lib_syslog.c b/nuttx/libc/syslog/lib_syslog.c
index 4ec544329..636401046 100644
--- a/nuttx/libc/syslog/lib_syslog.c
+++ b/nuttx/libc/syslog/lib_syslog.c
@@ -108,7 +108,7 @@ static inline int vsyslog_internal(FAR const char *fmt, va_list ap)
/* Get the current time */
- (void)clock_systimespec(&ts);
+ ret = clock_systimespec(&ts);
#endif
#if defined(CONFIG_SYSLOG)