summaryrefslogtreecommitdiff
path: root/stdio-common
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2005-07-28 14:51:03 +0000
committerUlrich Drepper <drepper@redhat.com>2005-07-28 14:51:03 +0000
commit4c5b09ed6b6a4fc8c0efeea6a474a050179e46c4 (patch)
tree9a37ccba8d4cb04e330a26228d9fe720d1666e94 /stdio-common
parenteca086a6135354d530a495a4e61b58bdc3fb48ee (diff)
* stdio-common/fxprintf.c (__fxprintf): Add INTUSE to _IO_vfprintf
call. * gmon/gmon.c (write_gmon): Use __snprintf rather than snprintf.
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/fxprintf.c2
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);