summaryrefslogtreecommitdiff
path: root/gv.c
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2005-07-03 13:31:56 -0500
committerSteve Hay <SteveHay@planit.com>2005-07-04 12:30:50 +0000
commitb64e5050699224c037d91354e38766884caa0910 (patch)
tree38f329ba2a365c8eec6078887704f6e2c59562c6 /gv.c
parentc941fb51a763b50ea8ceb343cf253ac80c4ca160 (diff)
downloadperl-b64e5050699224c037d91354e38766884caa0910.tar.gz
Post-YAPC consting, now with an attachment!
Message-ID: <20050703233156.GA20967@petdance.com> p4raw-id: //depot/perl@25067
Diffstat (limited to 'gv.c')
-rw-r--r--gv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gv.c b/gv.c
index 39f4b6ad93..d1678d0c73 100644
--- a/gv.c
+++ b/gv.c
@@ -1897,7 +1897,7 @@ bool
Perl_is_gv_magical_sv(pTHX_ SV *name, U32 flags)
{
STRLEN len;
- const char *temp = SvPV_const(name, len);
+ const char * const temp = SvPV_const(name, len);
return is_gv_magical(temp, len, flags);
}