diff options
author | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-30 10:54:22 +0000 |
---|---|---|
committer | Sven Wischnowsky <wischnow@users.sourceforge.net> | 2000-05-30 10:54:22 +0000 |
commit | 24520730a669502ab74c46d9ff90c043f0903f3d (patch) | |
tree | e51a7a36f6eff987fc04c102fabbea54a4d2a2d7 /Src/Zle/computil.c | |
parent | b2f8bc5ea25dbd1710aca9a681a70dcba6a6f436 (diff) | |
download | zsh-24520730a669502ab74c46d9ff90c043f0903f3d.tar.gz zsh-24520730a669502ab74c46d9ff90c043f0903f3d.tar.xz zsh-24520730a669502ab74c46d9ff90c043f0903f3d.zip |
bogus uninitialised variable warning
Diffstat (limited to 'Src/Zle/computil.c')
-rw-r--r-- | Src/Zle/computil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/computil.c b/Src/Zle/computil.c index 1a98528df..d6bc35a39 100644 --- a/Src/Zle/computil.c +++ b/Src/Zle/computil.c @@ -1224,7 +1224,7 @@ static int ca_parse_line(Cadef d, int multi, int first) { Caarg adef, ddef; - Caopt ptr, wasopt, dopt; + Caopt ptr, wasopt = NULL, dopt; struct castate state; char *line, *pe, **argxor = NULL; int cur, doff, argend, arglast; |