From: markus schnalke Date: Wed, 11 Apr 2012 14:46:27 +0000 (+0200) Subject: Removed #ifdef lint. X-Git-Tag: mmh-thesis-end~98 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=70bc44ec2fd9f4033a6190868979991338ba6664 Removed #ifdef lint. --- diff --git a/sbr/fmt_compile.c b/sbr/fmt_compile.c index dd0b52a..173f12d 100644 --- a/sbr/fmt_compile.c +++ b/sbr/fmt_compile.c @@ -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 = ' '; diff --git a/uip/mhparse.c b/uip/mhparse.c index 483ad84..2ee95f4 100644 --- a/uip/mhparse.c +++ b/uip/mhparse.c @@ -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) {