X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=cacao.git;a=blobdiff_plain;f=src%2Ftoolbox%2Flogging.cpp;h=1a05754943a68a6d89c208f0f5c04e318f36cd6a;hp=c38b32b02ef4e3f47a5cc31a90c19742f75cb866;hb=05e9375c76bd02c893870640faacba875a82e27e;hpb=f01d67d4cb15d900602595e7d330932a906035eb diff --git a/src/toolbox/logging.cpp b/src/toolbox/logging.cpp index c38b32b02..1a0575494 100644 --- a/src/toolbox/logging.cpp +++ b/src/toolbox/logging.cpp @@ -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); }