Removed #ifdef lint.
authormarkus schnalke <meillo@marmaro.de>
Wed, 11 Apr 2012 14:46:27 +0000 (16:46 +0200)
committermarkus schnalke <meillo@marmaro.de>
Wed, 11 Apr 2012 14:46:27 +0000 (16:46 +0200)
sbr/fmt_compile.c
uip/mhparse.c

index dd0b52a..173f12d 100644 (file)
@@ -409,9 +409,7 @@ do_spec(char *sp)
 {
        register char *cp = sp;
        register int c;
-#ifndef lint
        register int ljust = 0;
-#endif /* not lint */
        register int wid = 0;
        register char fill = ' ';
 
index 483ad84..2ee95f4 100644 (file)
@@ -1873,7 +1873,7 @@ openQuoted(CT ct, char **file)
        int cc, len, quoted, own_ct_fp = 0;
        unsigned char *cp, *ep;
        char buffer[BUFSIZ];
-       unsigned char mask;
+       unsigned char mask = 0;
        CE ce;
        /* sbeck -- handle suffixes */
        CI ci;
@@ -1947,9 +1947,6 @@ openQuoted(CT ct, char **file)
        }
 
        quoted = 0;
-#ifdef lint
-       mask = 0;
-#endif
 
        fseek(ct->c_fp, ct->c_begin, SEEK_SET);
        while (len > 0) {