diff options
Diffstat (limited to 'lib/libc/stdio/sprintf.c')
| -rw-r--r-- | lib/libc/stdio/sprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/stdio/sprintf.c b/lib/libc/stdio/sprintf.c index 10e73f07d452..a8100961fa4d 100644 --- a/lib/libc/stdio/sprintf.c +++ b/lib/libc/stdio/sprintf.c @@ -74,7 +74,7 @@ sprintf(str, fmt, va_alist) #else va_start(ap); #endif - ret = vfprintf(&f, fmt, ap); + ret = __vfprintf(&f, fmt, ap); va_end(ap); *f._p = 0; return (ret); |
