diff options
author | Steve Hay <SteveHay@planit.com> | 2007-06-05 12:51:07 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-06-05 12:51:07 +0000 |
commit | 81d4fa0f81d9b5a66b7c8b64eb9cafb758238c51 (patch) | |
tree | 1e8f13f72f27c3aa021604b43ccd141171c341fe /regexec.c | |
parent | 8c02634dc0c7d7611687ee447f001fcf1c387de5 (diff) | |
download | perl-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |