aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/printf.c')
-rw-r--r--newlib/libc/stdio/printf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/printf.c b/newlib/libc/stdio/printf.c
index 2512afe..19f465e 100644
--- a/newlib/libc/stdio/printf.c
+++ b/newlib/libc/stdio/printf.c
@@ -39,7 +39,7 @@ _printf_r(ptr, fmt, va_alist)
int ret;
va_list ap;
- _REENT_SMALL_CHECK_INIT (_stdout_r (ptr));
+ _REENT_SMALL_CHECK_INIT (ptr);
#ifdef _HAVE_STDC
va_start (ap, fmt);
#else
@@ -65,7 +65,7 @@ printf(fmt, va_alist)
int ret;
va_list ap;
- _REENT_SMALL_CHECK_INIT (_stdout_r (_REENT));
+ _REENT_SMALL_CHECK_INIT (_REENT);
#ifdef _HAVE_STDC
va_start (ap, fmt);
#else