* libc/machine/powerpc/vfprintf.c: Use _REENT when calling

_VFPRINTF_R.
This commit is contained in:
Aldy Hernandez 2005-01-18 17:08:55 +00:00
parent c20ec37fbd
commit 464d01bf6e
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2005-01-18 Aldy Hernandez <aldyh@redhat.com>
* libc/machine/powerpc/vfprintf.c: Use _REENT when calling
_VFPRINTF_R.
2005-01-07 Paul Brook <paul@codesourcery.com>
* configure.in: Add test for .init_array.

View File

@ -322,8 +322,7 @@ _DEFUN (VFPRINTF, (fp, fmt0, ap),
_CONST char *fmt0 _AND
va_list ap)
{
CHECK_INIT (fp);
return _VFPRINTF_R (fp->_data, fp, fmt0, ap);
return _VFPRINTF_R (_REENT, fp, fmt0, ap);
}
int