From 21dba96cd6c555cdfa36894665ee7edd9afcf348 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 8 Aug 2001 07:41:01 +0000 Subject: Silence "might be used uninitialized" warning. --- Src/Zle/compmatch.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src/Zle/compmatch.c') diff --git a/Src/Zle/compmatch.c b/Src/Zle/compmatch.c index 974f2ab3c..f4c720a87 100644 --- a/Src/Zle/compmatch.c +++ b/Src/Zle/compmatch.c @@ -1129,7 +1129,7 @@ pattern_match(Cpattern p, char *s, unsigned char *in, unsigned char *out) Cline bld_parts(char *str, int len, int plen, Cline *lp) { - Cline ret = NULL, *q = &ret, n; + Cline ret = NULL, *q = &ret, n = NULL; Cmlist ms; Cmatcher mp; int t, op = plen; -- cgit 1.4.1