From 12b2ed63ab6f2b075b361ba7081e62d32b0cc122 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 28 May 2004 19:24:13 +0000 Subject: Silenced one signed/unsigned comparison compiler warning. --- Src/Zle/complete.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Src/Zle/complete.c') diff --git a/Src/Zle/complete.c b/Src/Zle/complete.c index b325b8536..3939bdd07 100644 --- a/Src/Zle/complete.c +++ b/Src/Zle/complete.c @@ -788,7 +788,7 @@ do_comp_vars(int test, int na, char *sa, int nb, char *sb, int mod) if (!na) return 1; if (na > 0 && - strlen(test == CVT_PRENUM ? compprefix : compsuffix) >= na) { + (int)strlen(test == CVT_PRENUM ? compprefix : compsuffix) >= na) { if (mod) { if (test == CVT_PRENUM) ignore_prefix(na); -- cgit 1.4.1