From 9246c65e7445d45babd69ada378ff7f5f266c771 Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Wed, 14 Nov 2001 21:53:22 +0000 Subject: [PATCH] Signedness nit. p4raw-id: //depot/perl@13005 --- regexec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.7.4