about summary refs log tree commit diff
path: root/libio/swscanf.c
diff options
context:
space:
mode:
Diffstat (limited to 'libio/swscanf.c')
-rw-r--r--libio/swscanf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libio/swscanf.c b/libio/swscanf.c
index 9e4c256d24..397dbc554c 100644
--- a/libio/swscanf.c
+++ b/libio/swscanf.c
@@ -28,7 +28,7 @@ __swscanf (const wchar_t *s, const wchar_t *format, ...)
   int done;
 
   va_start (arg, format);
-  done = vswscanf (s, format, arg);
+  done = __vswscanf (s, format, arg);
   va_end (arg);
 
   return done;