summaryrefslogtreecommitdiff
path: root/libc/stdio/wprintf.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-09 13:52:08 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-09 13:52:08 +0000
commit60acdef20530daeaa65cbce8bb2a14c22bc0ed00 (patch)
tree6d1fff9381cd8f517706bf8de2e0a875f6688b35 /libc/stdio/wprintf.c
parent1b3c855bc3dff600ee36bbafc3b3ad2d471d8df4 (diff)
Implement all needed hidden *printf and correct vasprintf, thx blindvt
Diffstat (limited to 'libc/stdio/wprintf.c')
-rw-r--r--libc/stdio/wprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/wprintf.c b/libc/stdio/wprintf.c
index c64fc086a..00f5ef514 100644
--- a/libc/stdio/wprintf.c
+++ b/libc/stdio/wprintf.c
@@ -15,7 +15,7 @@ int wprintf(const wchar_t * __restrict format, ...)
int rv;
va_start(arg, format);
- rv = vfwprintf(stdout, format, arg);
+ rv = __vfwprintf(stdout, format, arg);
va_end(arg);
return rv;