From: John E. Malmberg Date: Mon, 2 Jan 2006 14:16:02 +0000 (-0500) Subject: [patch@26561] utf8.c const issue. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2f73348c9e7aa109e520f22743fd8a75b40c22c6;p=p5sagit%2Fp5-mst-13.2.git [patch@26561] utf8.c const issue. From: "John E. Malmberg" Message-ID: <43B97BF2.2050201@qsl.net> p4raw-id: //depot/perl@26593 --- diff --git a/utf8.c b/utf8.c index f4e62ac..db81e26 100644 --- a/utf8.c +++ b/utf8.c @@ -2236,7 +2236,7 @@ Perl_ibcmp_utf8(pTHX_ const char *s1, char **pe1, register UV l1, bool u1, const register const U8 *p1 = (const U8*)s1; register const U8 *p2 = (const U8*)s2; register const U8 *f1 = NULL; - register U8 *f2 = NULL; + register const U8 *f2 = NULL; register U8 *e1 = NULL; register U8 *q1 = NULL; register U8 *e2 = NULL;