diff options
Diffstat (limited to 'stdio-common/vfscanf.c')
-rw-r--r-- | stdio-common/vfscanf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c index 70d8bf0b18..7985602443 100644 --- a/stdio-common/vfscanf.c +++ b/stdio-common/vfscanf.c @@ -96,7 +96,7 @@ # define ungetc(c, s) (--read_in, ungetc (c, s)) # define inchar() ((c = getc (s)), (void) ++read_in, c) # define encode_error() do { \ - _IO_funlockfile (s); \ + funlockfile (s); \ __set_errno (EILSEQ); \ return done; \ } while (0) |