diff options
Diffstat (limited to 'stdio-common')
-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 bad37f2ad1..8ed56b3c08 100644 --- a/stdio-common/vfscanf.c +++ b/stdio-common/vfscanf.c @@ -104,7 +104,7 @@ #else # define ungetc(c, s) ((void) (c != EOF && --read_in), ungetc (c, s)) # define inchar() (c == EOF ? EOF \ - : (c = getc (s)), (void) (c != EOF && ++read_in), c) + : ((c = getc (s)), (void) (c != EOF && ++read_in), c)) # define encode_error() do { \ funlockfile (s); \ __set_errno (EILSEQ); \ |