aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/vsiprintf.c
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdio/vsiprintf.c')
-rw-r--r--newlib/libc/stdio/vsiprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/stdio/vsiprintf.c b/newlib/libc/stdio/vsiprintf.c
index 967c178..05d009d 100644
--- a/newlib/libc/stdio/vsiprintf.c
+++ b/newlib/libc/stdio/vsiprintf.c
@@ -53,7 +53,7 @@ _DEFUN(_vsiprintf_r, (ptr, str, fmt, ap),
f._bf._base = f._p = (unsigned char *) str;
f._bf._size = f._w = INT_MAX;
f._file = -1; /* No file. */
- ret = _vfiprintf_r (ptr, &f, fmt, ap);
+ ret = _svfiprintf_r (ptr, &f, fmt, ap);
*f._p = 0;
return ret;
}