apps/examples/sotest: Fix an error introduced in previous commit

This commit is contained in:
Gregory Nutt 2017-01-27 15:48:15 -06:00
parent abd0362c64
commit bedf040698
2 changed files with 2 additions and 2 deletions

View File

@ -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);
}

View File

@ -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