projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
9b55d3a
)
VC6 warning: result still unsigned.
Jarkko Hietaniemi [Mon, 11 Aug 2003 10:55:19 +0000 (10:55 +0000)]
p4raw-id: //depot/perl@20612
regexec.c
patch
|
blob
|
blame
|
history
diff --git
a/regexec.c
b/regexec.c
index
1f36027
..
464ceaf
100644
(file)
--- 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() */