]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
(inchar): Fix typos.
authorUlrich Drepper <drepper@redhat.com>
Mon, 2 Mar 1998 18:34:10 +0000 (18:34 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 2 Mar 1998 18:34:10 +0000 (18:34 +0000)
stdio-common/vfscanf.c

index 106c729b9c8b73b439a08e77c0a59a6b070f0736..c02b4f4c4ae05af64eb0b62e95da81ecaf1e9894 100644 (file)
@@ -56,8 +56,8 @@
 # define va_list       _IO_va_list
 # define ungetc(c, s)  ((void) ((int) c != EOF && --read_in),                \
                         _IO_ungetc (c, s))
-# define inchar()      (c == EOF ? EOF
-                        : ((c = _IO_getc_unlocked (s)), \
+# define inchar()      (c == EOF ? EOF                                       \
+                        : ((c = _IO_getc_unlocked (s)),                      \
                            (void) (c != EOF && ++read_in), c))
 # define encode_error()        do {                                                  \
                          if (errp != NULL) *errp |= 4;                       \
 # define UNLOCK_STREAM __libc_cleanup_region_end (1)
 #else
 # define ungetc(c, s)  ((void) (c != EOF && --read_in), ungetc (c, s))
-# define inchar()      (c == EOF ? EOF
+# define inchar()      (c == EOF ? EOF                                       \
                         : ((c = getc (s)), (void) (c != EOF && ++read_in), c))
 # define encode_error()        do {                                                  \
                          funlockfile (s);                                    \