summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2003-08-11 10:55:19 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2003-08-11 10:55:19 +0000
commitdb12adc639f0fd626547e3bb85667c5d90d59721 (patch)
treef4264fefdd3fd9612a77b3cc58d2d1f83e55e550 /regexec.c
parent9b55d3abafa1e65a2202aa8a5382f9d9a5ad7fc9 (diff)
downloadperl-db12adc639f0fd626547e3bb85667c5d90d59721.tar.gz
VC6 warning: result still unsigned.
p4raw-id: //depot/perl@20612
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexec.c b/regexec.c
index 1f36027c5c..464ceaf9e3 100644
--- a/regexec.c
+++ b/regexec.c
@@ -1043,7 +1043,7 @@ S_find_byclass(pTHX_ regexp * prog, regnode *c, char *s, char *strend, char *sta
c1 = *(U8*)m;
c2 = PL_fold_locale[c1];
do_exactf:
- e = HOP3c(strend, -lnc, s);
+ e = HOP3c(strend, -((I32)lnc), s);
if (norun && e < s)
e = s; /* Due to minlen logic of intuit() */