diff options
Diffstat (limited to 'stdio-common/vfscanf.c')
-rw-r--r-- | stdio-common/vfscanf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c index f201c46775..8653088751 100644 --- a/stdio-common/vfscanf.c +++ b/stdio-common/vfscanf.c @@ -841,9 +841,9 @@ __vfscanf (FILE *s, const char *format, va_list argptr) if (flags & LONGDBL) { if (number_signed) - num.q = __strtoq_internal (wp, &tw, base, flags & GROUP); + num.q = __strtoll_internal (wp, &tw, base, flags & GROUP); else - num.uq = __strtouq_internal (wp, &tw, base, flags & GROUP); + num.uq = __strtoull_internal (wp, &tw, base, flags & GROUP); } else { |