From 4e1bac76a81d99ff4658fb86edb04356d357017d Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Wed, 26 Jul 1995 14:04:19 +0000 Subject: * stdio/vfscanf.c (conv_error): Simplify expression to avoid "value computed is not used" warning. * Makeconfig (+gccwarn): Removed -Wconversion. * csu/initfini.c (GLOBAL): Macro removed. (_init, _fini): Always define globally. * csu/Makefile (crtstuff, initfini): Don't make crt[in]_s.o. --- stdio/vfscanf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stdio/vfscanf.c') diff --git a/stdio/vfscanf.c b/stdio/vfscanf.c index cdfedc2485..6eacc2b309 100644 --- a/stdio/vfscanf.c +++ b/stdio/vfscanf.c @@ -36,7 +36,7 @@ Cambridge, MA 02139, USA. */ #define inchar() ((c = getc(s)) == EOF ? EOF : (++read_in, c)) -#define conv_error() return ((c == EOF || ungetc(c, s)), done) +#define conv_error() return (ungetc(c, s), done) #define input_error() return (done == 0 ? EOF : done) #define memory_error() return ((errno = ENOMEM), EOF) -- cgit v1.2.3