From: Rafael Garcia-Suarez Date: Mon, 30 Apr 2007 12:21:50 +0000 (+0000) Subject: Signedness nit, found by Jarkko X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=59fe32ea432417e2fb92353859d7fef999a5dea1;p=p5sagit%2Fp5-mst-13.2.git Signedness nit, found by Jarkko p4raw-id: //depot/perl@31109 --- diff --git a/regexec.c b/regexec.c index 85804ab..0b0cc6c 100644 --- a/regexec.c +++ b/regexec.c @@ -5017,7 +5017,7 @@ NULL char *e = PL_regeol; to_uni_fold(n, folded, &foldlen); - if (ibcmp_utf8(folded, 0, foldlen, 1, + if (ibcmp_utf8((const char*) folded, 0, foldlen, 1, l, &e, 0, do_utf8)) { sayNO; }