apps/examples/sotest: Fix an error introduced in previous commit
This commit is contained in:
parent
abd0362c64
commit
bedf040698
@ -76,7 +76,7 @@ static void modprint(FAR const char *fmt, ...)
|
||||
va_list ap;
|
||||
|
||||
va_start(ap, fmt);
|
||||
(void)syslog(LOG_INFO, fmt, ap);
|
||||
(void)vsyslog(LOG_INFO, fmt, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
|
||||
|
@ -107,7 +107,7 @@ static void modprint(FAR const char *fmt, ...)
|
||||
va_list ap;
|
||||
|
||||
va_start(ap, fmt);
|
||||
(void)syslog(LOG_INFO, fmt, ap);
|
||||
(void)vsyslog(LOG_INFO, fmt, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user