From: Steve Hay Date: Tue, 5 Jun 2007 12:51:07 +0000 (+0000) Subject: Silence another VC++ compiler warning (signed/unsigned mismatch in ==) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=81d4fa0f81d9b5a66b7c8b64eb9cafb758238c51;p=p5sagit%2Fp5-mst-13.2.git Silence another VC++ compiler warning (signed/unsigned mismatch in ==) p4raw-id: //depot/perl@31335 --- diff --git a/regexec.c b/regexec.c index c6dbcc0..a5f6bb5 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;