diff options
Diffstat (limited to 'stdio-common/vfscanf.c')
-rw-r--r-- | stdio-common/vfscanf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c index 551849b115..63e7bd8815 100644 --- a/stdio-common/vfscanf.c +++ b/stdio-common/vfscanf.c @@ -543,8 +543,7 @@ _IO_vfscanf (s, format, argptr, errp) /* Find the conversion specifier. */ fc = *f++; if (skip_space || (fc != L_('[') && fc != L_('c') - && fc != L_('C') && fc != L_('n') - && fc != L_('%'))) + && fc != L_('C') && fc != L_('n'))) { /* Eat whitespace. */ int save_errno = errno; |