diff options
Diffstat (limited to 'libc/stdio/snprintf.c')
-rw-r--r-- | libc/stdio/snprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/stdio/snprintf.c b/libc/stdio/snprintf.c index 45ef7eb..5aa54be 100644 --- a/libc/stdio/snprintf.c +++ b/libc/stdio/snprintf.c @@ -60,7 +60,7 @@ snprintf(char *str, size_t n, const char *fmt, ...) f._bf._base = f._p = (unsigned char *)str; f._bf._size = f._w = n - 1; va_start(ap, fmt); - ret = vfprintf(&f, fmt, ap); + ret = __vfprintf(&f, fmt, ap); va_end(ap); *f._p = '\0'; return (ret); |