diff options
Diffstat (limited to 'newlib/libc/stdio/sscanf.c')
-rw-r--r-- | newlib/libc/stdio/sscanf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdio/sscanf.c b/newlib/libc/stdio/sscanf.c index c0921e1..b093903 100644 --- a/newlib/libc/stdio/sscanf.c +++ b/newlib/libc/stdio/sscanf.c @@ -433,7 +433,7 @@ sscanf(str, fmt, va_alist) #else va_start (ap); #endif - ret = __svfscanf_r (_REENT, &f, fmt, ap); + ret = __ssvfscanf_r (_REENT, &f, fmt, ap); va_end (ap); return ret; } @@ -471,7 +471,7 @@ _sscanf_r(ptr, str, fmt, va_alist) #else va_start (ap); #endif - ret = __svfscanf_r (ptr, &f, fmt, ap); + ret = __ssvfscanf_r (ptr, &f, fmt, ap); va_end (ap); return ret; } |