about summary refs log tree commit diff
path: root/Src/Zle/compmatch.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@users.sourceforge.net>2001-08-08 07:41:01 +0000
committerWayne Davison <wayned@users.sourceforge.net>2001-08-08 07:41:01 +0000
commit21dba96cd6c555cdfa36894665ee7edd9afcf348 (patch)
tree262500fa700f7ba42ab1c4dec1ea4509521569f4 /Src/Zle/compmatch.c
parent7e231433596be391d1e5fa82fc9ebf72ee4cb7ea (diff)
downloadzsh-21dba96cd6c555cdfa36894665ee7edd9afcf348.tar.gz
zsh-21dba96cd6c555cdfa36894665ee7edd9afcf348.tar.xz
zsh-21dba96cd6c555cdfa36894665ee7edd9afcf348.zip
Silence "might be used uninitialized" warning.
Diffstat (limited to 'Src/Zle/compmatch.c')
-rw-r--r--Src/Zle/compmatch.c2
1 files changed, 1 insertions, 1 deletions
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;