From c16dc1b7987ffd6e7dde224192862691515a09ec Mon Sep 17 00:00:00 2001 From: David Levine Date: Fri, 17 Feb 2012 19:10:08 -0600 Subject: [PATCH] Initialized local "in" to suppress gcc warning about possible uninitialized use. --- uip/comp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 1.7.10.4