From: Jarkko Hietaniemi Date: Wed, 14 Nov 2001 21:53:22 +0000 (+0000) Subject: Signedness nit. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=9246c65e7445d45babd69ada378ff7f5f266c771;p=p5sagit%2Fp5-mst-13.2.git Signedness nit. p4raw-id: //depot/perl@13005 --- diff --git a/regexec.c b/regexec.c index 4904e57..8c3ff2e 100644 --- a/regexec.c +++ b/regexec.c @@ -3331,7 +3331,7 @@ S_regmatch(pTHX_ regnode *prog) c1 = c2 = -1000; goto assume_ok_easy; } - s = PL_bostr + ln; + s = (U8*)PL_bostr + ln; } else { s = (U8*)STRING(text_node); }