From ae1128f45d3f4cbbe232bd428e2d2865cfe65ecc Mon Sep 17 00:00:00 2001 From: bpringlemeir Date: Sun, 3 Feb 2008 07:01:15 +0000 Subject: [PATCH] Removed if statement with constant results --- src/usymtab.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/usymtab.c b/src/usymtab.c index 1d26d49..5033ec4 100644 --- a/src/usymtab.c +++ b/src/usymtab.c @@ -2009,11 +2009,7 @@ void usymtab_load (FILE *f) while ((c = *s) != '\0' && (c !='\n')) { - if (c != ' ' || c != '\t') - { - llbuglit ("Junk in load file"); - } - + llbuglit ("Junk in load file"); s++; } -- 2.45.0