diff options
Diffstat (limited to 'newlib/libc/stdio/snprintf.c')
-rw-r--r-- | newlib/libc/stdio/snprintf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/snprintf.c b/newlib/libc/stdio/snprintf.c index 52db2dd..13414e3 100644 --- a/newlib/libc/stdio/snprintf.c +++ b/newlib/libc/stdio/snprintf.c @@ -63,7 +63,7 @@ _snprintf_r(ptr, str, size, fmt, va_alist) #else va_start (ap); #endif - ret = _vfprintf_r (ptr, &f, fmt, ap); + ret = _svfprintf_r (ptr, &f, fmt, ap); va_end (ap); if (ret < EOF) ptr->_errno = EOVERFLOW; @@ -107,7 +107,7 @@ snprintf(str, size, fmt, va_alist) #else va_start (ap); #endif - ret = _vfprintf_r (ptr, &f, fmt, ap); + ret = _svfprintf_r (ptr, &f, fmt, ap); va_end (ap); if (ret < EOF) ptr->_errno = EOVERFLOW; |