From: bpringlemeir Date: Sun, 3 Feb 2008 07:01:15 +0000 (+0000) Subject: Removed if statement with constant results X-Git-Url: http://andersk.mit.edu/gitweb/splint.git/commitdiff_plain/ae1128f45d3f4cbbe232bd428e2d2865cfe65ecc Removed if statement with constant results --- 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++; }