From 4c5b09ed6b6a4fc8c0efeea6a474a050179e46c4 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 28 Jul 2005 14:51:03 +0000 Subject: * stdio-common/fxprintf.c (__fxprintf): Add INTUSE to _IO_vfprintf call. * gmon/gmon.c (write_gmon): Use __snprintf rather than snprintf. --- stdio-common/fxprintf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdio-common') 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); -- cgit v1.2.3