diff options
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/fxprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/fxprintf.c b/stdio-common/fxprintf.c index 6fecb31fb7..ff6a98e94b 100644 --- a/stdio-common/fxprintf.c +++ b/stdio-common/fxprintf.c @@ -47,7 +47,7 @@ __fxprintf (FILE *fp, const char *fmt, ...) res = __vfwprintf (fp, wfmt, ap); } else - res = _IO_vfprintf (fp, fmt, ap); + res = INTUSE(_IO_vfprintf) (fp, fmt, ap); va_end (ap); |