Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2005-01-18 20:08:55 +0300
committerAldy Hernandez <aldyh@redhat.com>2005-01-18 20:08:55 +0300
commit464d01bf6ef774a5faf638378f331868b375fde3 (patch)
tree39da4a2dffc6548534a9ffb303c023f5296dd919 /newlib/libc/machine/powerpc/vfprintf.c
parentc20ec37fbd11cf18cf9201e218ceb022399883eb (diff)
* libc/machine/powerpc/vfprintf.c: Use _REENT when calling
_VFPRINTF_R.
Diffstat (limited to 'newlib/libc/machine/powerpc/vfprintf.c')
-rw-r--r--newlib/libc/machine/powerpc/vfprintf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/newlib/libc/machine/powerpc/vfprintf.c b/newlib/libc/machine/powerpc/vfprintf.c
index aac5fb2fb..b80c58c65 100644
--- a/newlib/libc/machine/powerpc/vfprintf.c
+++ b/newlib/libc/machine/powerpc/vfprintf.c
@@ -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