Dump native debug on stderr

This commit is contained in:
Elias Naur 2003-12-24 07:32:03 +00:00
parent 0730597b52
commit bebb9bad4b
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ void printfDebug(const char *format, ...) {
va_list ap;
va_start(ap, format);
if (ISDEBUGENABLED())
vprintf(format, ap);
vfprintf(stderr, format, ap);
va_end(ap);
}