In ncl_printf(), call vprintf() instead of printf().

MFC after:	3 days
This commit is contained in:
Ruslan Ermilov 2011-05-04 11:22:52 +00:00
parent 60c6d23685
commit 55cde634cf

View file

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