about summary refs log tree commit diff
path: root/Src/Zle/complist.c
diff options
context:
space:
mode:
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