mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
In ncl_printf(), call vprintf() instead of printf().
MFC after: 3 days
This commit is contained in:
parent
60c6d23685
commit
55cde634cf
1 changed files with 1 additions and 1 deletions
|
|
@ -167,7 +167,7 @@ ncl_printf(const char *fmt, ...)
|
|||
|
||||
mtx_lock(&Giant);
|
||||
va_start(ap, fmt);
|
||||
printf(fmt, ap);
|
||||
vprintf(fmt, ap);
|
||||
va_end(ap);
|
||||
mtx_unlock(&Giant);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue