Change 31335 by [EMAIL PROTECTED] on 2007/06/05 12:51:07

        Silence another VC++ compiler warning (signed/unsigned mismatch in ==)

Affected files ...

... //depot/perl/regexec.c#540 edit

Differences ...

==== //depot/perl/regexec.c#540 (text) ====
Index: perl/regexec.c
--- perl/regexec.c#539~31303~   2007-05-29 01:49:06.000000000 -0700
+++ perl/regexec.c      2007-06-05 05:51:07.000000000 -0700
@@ -5006,7 +5006,7 @@
 #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;
End of Patch.

Reply via email to