about summary refs log tree commit diff
path: root/Src/Zle/complist.c
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2005-08-10 13:21:15 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2005-08-10 13:21:15 +0000
commiteb094067875ba06f182c7850d5592bd3c71cc56a (patch)
tree9928c167a38a22559dc795a585d7473433a4d00d /Src/Zle/complist.c
parent4fe6b1a1fc223a168fc3058bcd91324610274d7f (diff)
downloadzsh-eb094067875ba06f182c7850d5592bd3c71cc56a.tar.gz
zsh-eb094067875ba06f182c7850d5592bd3c71cc56a.tar.xz
zsh-eb094067875ba06f182c7850d5592bd3c71cc56a.zip
21593: character arrays wrongly declared with ZLE_UNICODE_SUPPORT
Diffstat (limited to 'Src/Zle/complist.c')
-rw-r--r--Src/Zle/complist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/Zle/complist.c b/Src/Zle/complist.c
index 005e5540a..4290f5f6d 100644
--- a/Src/Zle/complist.c
+++ b/Src/Zle/complist.c
@@ -1865,7 +1865,7 @@ msearch(Cmatch **ptr, int ins, int back, int rep, int *wrapp)
 {
 #ifdef ZLE_UNICODE_SUPPORT
     /* MB_CUR_MAX may not be constant */
-    VARARR(char *, s, MB_CUR_MAX+1);
+    VARARR(char, s, MB_CUR_MAX+1);
 #else
     char s[2];
 #endif