From: David Levine Date: Sat, 18 Feb 2012 01:10:08 +0000 (-0600) Subject: Initialized local "in" to suppress gcc warning about possible uninitialized use. X-Git-Url: http://git.marmaro.de/?a=commitdiff_plain;h=c16dc1b7987ffd6e7dde224192862691515a09ec;p=mmh Initialized local "in" to suppress gcc warning about possible uninitialized use. --- diff --git a/uip/comp.c b/uip/comp.c index 6882372..a29bfcd 100644 --- a/uip/comp.c +++ b/uip/comp.c @@ -72,7 +72,7 @@ int main (int argc, char **argv) { int use = NOUSE, nedit = 0, nwhat = 0; - int i, in, isdf = 0, out, dat[5], ncomps, format_len; + int i, in = NOTOK, isdf = 0, out, dat[5], ncomps, format_len; int outputlinelen = OUTPUTLINELEN; char *cp, *cwd, *maildir, *dfolder = NULL; char *ed = NULL, *file = NULL, *form = NULL;