mirror of
https://github.com/apache/nuttx.git
synced 2026-05-31 23:40:19 +08:00
Misc changes to get a clean build after all of the syslog changes. There are probably other things still broken
This commit is contained in:
@@ -119,7 +119,7 @@ int lowsyslog(int priority, FAR const char *fmt, ...)
|
||||
#endif
|
||||
{
|
||||
va_start(ap, fmt);
|
||||
ret = lowvsyslog(fmt, ap);
|
||||
ret = lowvsyslog(priority, fmt, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
|
||||
|
||||
@@ -146,7 +146,7 @@ int syslog(int priority, FAR const char *fmt, ...)
|
||||
#endif
|
||||
{
|
||||
va_start(ap, fmt);
|
||||
ret = vsyslog(fmt, ap);
|
||||
ret = vsyslog(priority, fmt, ap);
|
||||
va_end(ap);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user