about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2022-03-30 20:34:24 +0200
committerMikael Magnusson <mikachu@gmail.com>2022-03-30 20:34:37 +0200
commit774c634d2e494046865e59af2f9e3b2d0a74597a (patch)
tree42400e9facf217ffc6245e90db1dbe48fd3bf91e /Src
parent98e46340867028808e71e7f3373881cb7e5b6764 (diff)
downloadzsh-774c634d2e494046865e59af2f9e3b2d0a74597a.tar.gz
zsh-774c634d2e494046865e59af2f9e3b2d0a74597a.tar.xz
zsh-774c634d2e494046865e59af2f9e3b2d0a74597a.zip
49926: remove unused variable from 49915
Diffstat (limited to 'Src')
-rw-r--r--Src/Zle/compcore.c2
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;