projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
449b893
)
Fix a signed/unsigned comparison warning
Rafael Garcia-Suarez [Fri, 27 Apr 2007 07:55:34 +0000 (07:55 +0000)]
p4raw-id: //depot/perl@31097
regexec.c
patch
|
blob
|
blame
|
history
diff --git
a/regexec.c
b/regexec.c
index
79fab43
..
d3e9c25
100644
(file)
--- a/
regexec.c
+++ b/
regexec.c
@@
-5006,9
+5006,8
@@
NULL
#undef ST
case FOLDCHAR:
n = ARG(scan);
- if (nextchr==n) {
+ if (nextchr == (I32)n) {
locinput += UTF8SKIP(locinput);
-
} else {
/* This malarky is to handle LATIN SMALL LETTER SHARP S
properly. Sigh */