diff options
| author | Mikael Magnusson <mikachu@gmail.com> | 2022-03-30 20:34:24 +0200 |
|---|---|---|
| committer | Mikael Magnusson <mikachu@gmail.com> | 2022-03-30 20:34:37 +0200 |
| commit | 774c634d2e494046865e59af2f9e3b2d0a74597a (patch) | |
| tree | 42400e9facf217ffc6245e90db1dbe48fd3bf91e /Src/Zle/compcore.c | |
| parent | 49906 (Bart), 49911: Fixes to querying jobs in subshell. (diff) | |
| download | zsh-774c634d2e494046865e59af2f9e3b2d0a74597a.tar zsh-774c634d2e494046865e59af2f9e3b2d0a74597a.tar.gz zsh-774c634d2e494046865e59af2f9e3b2d0a74597a.tar.bz2 zsh-774c634d2e494046865e59af2f9e3b2d0a74597a.tar.lz zsh-774c634d2e494046865e59af2f9e3b2d0a74597a.tar.xz zsh-774c634d2e494046865e59af2f9e3b2d0a74597a.tar.zst zsh-774c634d2e494046865e59af2f9e3b2d0a74597a.zip | |
49926: remove unused variable from 49915
Diffstat (limited to 'Src/Zle/compcore.c')
| -rw-r--r-- | Src/Zle/compcore.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/compcore.c b/Src/Zle/compcore.c index 0b5b22a30..18b8cb531 100644 --- a/Src/Zle/compcore.c +++ b/Src/Zle/compcore.c @@ -3286,7 +3286,7 @@ makearray(LinkList l, int type, int flags, int *np, int *nlp, int *llp) } else { /* didn't use -1 or -2, so remove all duplicates (efficient) */ if (!(flags & CGF_UNIQALL) && !(flags & CGF_UNIQCON)) { - int dup, i, del = 0; + int dup, del = 0; /* To avoid O(n^2) here, sort a copy of the list, then remove marked elements */ matchorder = flags; |
