Change 20612 by [EMAIL PROTECTED] on 2003/08/11 10:55:19
VC6 warning: result still unsigned.
Affected files ...
... //depot/perl/regexec.c#316 edit
Differences ...
==== //depot/perl/regexec.c#316 (text) ====
Index: perl/regexec.c
--- perl/regexec.c#315~20568~ Fri Aug 8 14:05:24 2003
+++ perl/regexec.c Mon Aug 11 03:55:19 2003
@@ -1043,7 +1043,7 @@
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() */
End of Patch.