X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=src%2Ftoolbox%2Flogging.cpp;h=1a05754943a68a6d89c208f0f5c04e318f36cd6a;hb=05e9375c76bd02c893870640faacba875a82e27e;hp=c38b32b02ef4e3f47a5cc31a90c19742f75cb866;hpb=8c6bb03b79a31fcdb02e2331a91a928d558c2845;p=cacao.git 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); }