diff options
Diffstat (limited to 'newlib/libc/stdio/asniprintf.c')
-rw-r--r-- | newlib/libc/stdio/asniprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/asniprintf.c b/newlib/libc/stdio/asniprintf.c index 0bfe00d..97e7774 100644 --- a/newlib/libc/stdio/asniprintf.c +++ b/newlib/libc/stdio/asniprintf.c @@ -42,7 +42,7 @@ _asniprintf_r (struct _reent *ptr, for _size. */ if (len > INT_MAX) { - ptr->_errno = EOVERFLOW; + _REENT_ERRNO(ptr) = EOVERFLOW; return NULL; } f._bf._size = f._w = len; @@ -88,7 +88,7 @@ asniprintf (char *buf, for _size. */ if (len > INT_MAX) { - ptr->_errno = EOVERFLOW; + _REENT_ERRNO(ptr) = EOVERFLOW; return NULL; } f._bf._size = f._w = len; |