projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
4691a0f
)
Signedness nit, found by Jarkko
Rafael Garcia-Suarez [Mon, 30 Apr 2007 12:21:50 +0000 (12:21 +0000)]
p4raw-id: //depot/perl@31109
regexec.c
patch
|
blob
|
blame
|
history
diff --git
a/regexec.c
b/regexec.c
index
85804ab
..
0b0cc6c
100644
(file)
--- a/
regexec.c
+++ b/
regexec.c
@@
-5017,7
+5017,7
@@
NULL
char *e = PL_regeol;
to_uni_fold(n, folded, &foldlen);
- if (ibcmp_utf8(folded, 0, foldlen, 1,
+ if (ibcmp_utf8((const char*) folded, 0, foldlen, 1,
l, &e, 0, do_utf8)) {
sayNO;
}