summaryrefslogtreecommitdiff
path: root/libc/stdio/vdprintf.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/vdprintf.c
parent1b3c855bc3dff600ee36bbafc3b3ad2d471d8df4 (diff)
Implement all needed hidden *printf and correct vasprintf, thx blindvt
Diffstat (limited to 'libc/stdio/vdprintf.c')
-rw-r--r--libc/stdio/vdprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/vdprintf.c b/libc/stdio/vdprintf.c
index 5628738b1..1822f69b7 100644
--- a/libc/stdio/vdprintf.c
+++ b/libc/stdio/vdprintf.c
@@ -47,7 +47,7 @@ int attribute_hidden __vdprintf(int filedes, const char * __restrict format, va_
#endif
f.__nextopen = NULL;
- rv = vfprintf(&f, format, arg);
+ rv = __vfprintf(&f, format, arg);
#ifdef __STDIO_BUFFERS
/* If not buffering, then fflush is unnecessary. */