From: Rafael Garcia-Suarez Date: Sat, 4 Jun 2005 16:49:33 +0000 (+0000) Subject: Silence a const warning X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a433f3d2dda4db41b26d144e96f50f2022801470;p=p5sagit%2Fp5-mst-13.2.git Silence a const warning p4raw-id: //depot/perl@24705 --- diff --git a/sv.c b/sv.c index 5427148..f0e8e8a 100644 --- a/sv.c +++ b/sv.c @@ -4956,7 +4956,7 @@ Perl_sv_force_normal_flags(pTHX_ register SV *sv, U32 flags) #else if (SvREADONLY(sv)) { if (SvFAKE(sv)) { - char *pvx = SvPVX_const(sv); + const char *pvx = SvPVX_const(sv); const int is_utf8 = SvUTF8(sv); STRLEN len = SvCUR(sv); U32 hash = SvUVX(sv);