diff options
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/vfprintf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index ef9165e448..85558a1574 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -891,7 +891,7 @@ vfprintf (FILE *s, const CHAR_T *format, va_list ap) s2 = (const wchar_t *) string; \ string = alloca (len + 1); \ (void) __wcsrtombs (string, &s2, len + 1, &mbstate); \ - if (prec < min) \ + if (prec < len) \ len = prec; \ } \ \ |