aboutsummaryrefslogtreecommitdiffstats
path: root/libc/stdio/asprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/stdio/asprintf.c')
-rw-r--r--libc/stdio/asprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/asprintf.c b/libc/stdio/asprintf.c
index 1257c7f24..c3d8d61ff 100644
--- a/libc/stdio/asprintf.c
+++ b/libc/stdio/asprintf.c
@@ -38,7 +38,7 @@ asprintf(char **str, const char *fmt, ...)
goto err;
f._bf._size = f._w = 127; /* Leave room for the NUL */
va_start(ap, fmt);
- ret = vfprintf(&f, fmt, ap);
+ ret = __vfprintf(&f, fmt, ap);
va_end(ap);
if (ret == -1)
goto err;