From: Rafael Garcia-Suarez Date: Fri, 27 Apr 2007 07:55:34 +0000 (+0000) Subject: Fix a signed/unsigned comparison warning X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c7e093b82721727e685c42b5e5869705c6011be6;p=p5sagit%2Fp5-mst-13.2.git Fix a signed/unsigned comparison warning p4raw-id: //depot/perl@31097 --- diff --git a/regexec.c b/regexec.c index 79fab43..d3e9c25 100644 --- a/regexec.c +++ b/regexec.c @@ -5006,9 +5006,8 @@ NULL #undef ST case FOLDCHAR: n = ARG(scan); - if (nextchr==n) { + if (nextchr == (I32)n) { locinput += UTF8SKIP(locinput); - } else { /* This malarky is to handle LATIN SMALL LETTER SHARP S properly. Sigh */