1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

* stdio-common/fxprintf.c (__fxprintf): Add INTUSE to _IO_vfprintf

call.
	* gmon/gmon.c (write_gmon): Use __snprintf rather than snprintf.
This commit is contained in:
Ulrich Drepper
2005-07-28 14:51:03 +00:00
parent eca086a613
commit 4c5b09ed6b
3 changed files with 8 additions and 2 deletions

View File

@ -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);