fprintf/vfprintf dependency fix
[cacao.git] / src / toolbox / logging.cpp
index c38b32b02ef4e3f47a5cc31a90c19742f75cb866..1a05754943a68a6d89c208f0f5c04e318f36cd6a 100644 (file)
@@ -109,9 +109,9 @@ void log_start(void)
 void log_vprint(const char *text, va_list ap)
 {
        if (logfile)
-               vfprintf(logfile, text, ap);
+               os::vfprintf(logfile, text, ap);
        else
-               vfprintf(stdout, text, ap);
+               os::vfprintf(stdout, text, ap);
 }