diff options
Diffstat (limited to 'libio/fwprintf.c')
-rw-r--r-- | libio/fwprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/fwprintf.c b/libio/fwprintf.c index 6f30bc1f55..cadeda04ab 100644 --- a/libio/fwprintf.c +++ b/libio/fwprintf.c @@ -30,7 +30,7 @@ __fwprintf (FILE *stream, const wchar_t *format, ...) int done; va_start (arg, format); - done = vfwprintf (stream, format, arg); + done = __vfwprintf (stream, format, arg); va_end (arg); return done; |