diff options
Diffstat (limited to 'newlib/libc/stdio/vsniprintf.c')
-rw-r--r-- | newlib/libc/stdio/vsniprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/vsniprintf.c b/newlib/libc/stdio/vsniprintf.c index a8b272e..e7625ff 100644 --- a/newlib/libc/stdio/vsniprintf.c +++ b/newlib/libc/stdio/vsniprintf.c @@ -54,7 +54,7 @@ _vsniprintf_r (struct _reent *ptr, if (size > INT_MAX) { - ptr->_errno = EOVERFLOW; + _REENT_ERRNO(ptr) = EOVERFLOW; return EOF; } f._flags = __SWR | __SSTR; @@ -63,7 +63,7 @@ _vsniprintf_r (struct _reent *ptr, f._file = -1; /* No file. */ ret = _svfiprintf_r (ptr, &f, fmt, ap); if (ret < EOF) - ptr->_errno = EOVERFLOW; + _REENT_ERRNO(ptr) = EOVERFLOW; if (size > 0) *f._p = 0; return ret; |