diff options
Diffstat (limited to 'newlib/libc/stdio/fputwc_u.c')
-rw-r--r-- | newlib/libc/stdio/fputwc_u.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/newlib/libc/stdio/fputwc_u.c b/newlib/libc/stdio/fputwc_u.c index d4e5153..a5cc9a5 100644 --- a/newlib/libc/stdio/fputwc_u.c +++ b/newlib/libc/stdio/fputwc_u.c @@ -34,7 +34,8 @@ _fputwc_unlocked_r (struct _reent *ptr, wchar_t wc, FILE *fp) { - ORIENT(fp, 1); + if (ORIENT(fp, 1) != 1) + return WEOF; return __fputwc(ptr, wc, fp); } |