From: Rafael Garcia-Suarez Date: Mon, 30 Apr 2007 12:21:50 +0000 (+0000) Subject: Signedness nit, found by Jarkko X-Git-Tag: accepted/trunk/20130322.191538~15342 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59fe32ea432417e2fb92353859d7fef999a5dea1;p=platform%2Fupstream%2Fperl.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; }