summaryrefslogtreecommitdiff
path: root/regexec.c
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2007-06-05 12:51:07 +0000
committerSteve Hay <SteveHay@planit.com>2007-06-05 12:51:07 +0000
commit81d4fa0f81d9b5a66b7c8b64eb9cafb758238c51 (patch)
tree1e8f13f72f27c3aa021604b43ccd141171c341fe /regexec.c
parent8c02634dc0c7d7611687ee447f001fcf1c387de5 (diff)
downloadperl-81d4fa0f81d9b5a66b7c8b64eb9cafb758238c51.tar.gz
Silence another VC++ compiler warning (signed/unsigned mismatch in ==)
p4raw-id: //depot/perl@31335
Diffstat (limited to 'regexec.c')
-rw-r--r--regexec.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/regexec.c b/regexec.c
index c6dbcc0564..a5f6bb5c94 100644
--- a/regexec.c
+++ b/regexec.c
@@ -5006,7 +5006,7 @@ NULL
#undef ST
case FOLDCHAR:
n = ARG(scan);
- if ( n == what_len_TRICKYFOLD(locinput,do_utf8,ln) ) {
+ if ( n == (U32)what_len_TRICKYFOLD(locinput,do_utf8,ln) ) {
locinput += ln;
} else if ( 0xDF == n && !do_utf8 && !UTF ) {
sayNO;