From 81d4fa0f81d9b5a66b7c8b64eb9cafb758238c51 Mon Sep 17 00:00:00 2001 From: Steve Hay Date: Tue, 5 Jun 2007 12:51:07 +0000 Subject: [PATCH] Silence another VC++ compiler warning (signed/unsigned mismatch in ==) p4raw-id: //depot/perl@31335 --- regexec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4