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:
Gregory Nutt
2014-10-08 16:23:48 -06:00
parent c0382e8e17
commit 176491ce75
5 changed files with 7 additions and 10 deletions
+1 -1
View File
@@ -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);
}
+1 -1
View File
@@ -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);
}