This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
449b893
)
Fix a signed/unsigned comparison warning
author
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Fri, 27 Apr 2007 07:55:34 +0000
(07:55 +0000)
committer
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
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 */