summaryrefslogtreecommitdiff
path: root/src/wildmatch.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wildmatch.c')
-rw-r--r--src/wildmatch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wildmatch.c b/src/wildmatch.c
index 865f3f035..a894e4841 100644
--- a/src/wildmatch.c
+++ b/src/wildmatch.c
@@ -250,7 +250,7 @@ static int dowild(const uchar *p, const uchar *text, unsigned int flags)
for (s = p += 2; (p_ch = *p) && p_ch != ']'; p++) {} /*SHARED ITERATOR*/
if (!p_ch)
return WM_ABORT_ALL;
- i = p - s - 1;
+ i = (int)(p - s - 1);
if (i < 0 || p[-1] != ':') {
/* Didn't find ":]", so treat like a normal set. */
p = s - 2;