]> andersk Git - splint.git/blobdiff - src/usymtab.c
Removed if statement with constant results
[splint.git] / src / usymtab.c
index 7a3a0974c7bca4b0d4e5b2b5687125d90f24692c..5033ec4e8e12e2a2330532eb85267147dbf28432 100644 (file)
@@ -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++;
        }
 
@@ -3818,6 +3814,10 @@ checkGlobalReturn (uentry glob, sRef orig)
                    }
                }
              
+             DPRINTF (("Here: %s / %s",
+                       uentry_unparseFull (glob),
+                       sRef_unparseFull (sr)));
+
              if (ctype_isRealPointer (uentry_getType (glob))
                  && sRef_possiblyNull (sr)
                  && !uentry_possiblyNull (glob))
This page took 0.081586 seconds and 4 git commands to generate.