diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-06-08 22:48:00 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-06-08 22:48:00 +0000 |
commit | d526390560c1ae208a087ad4d648b08895f79f8f (patch) | |
tree | 461f01c4dc1a61eaf8c2ccaaee2b249d7e873872 /dump.c | |
parent | 940132f3fde5cf1c168dc34e3a3fea4e825977d5 (diff) | |
download | perl-d526390560c1ae208a087ad4d648b08895f79f8f.tar.gz |
More SvPV consting
p4raw-id: //depot/perl@24769
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -770,7 +770,7 @@ Perl_do_op_dump(pTHX_ I32 level, PerlIO *file, const OP *o) SAVEFREESV(tmpsv); gv_fullname3(tmpsv, (GV*)cSVOPo->op_sv, Nullch); Perl_dump_indent(aTHX_ level, file, "GV = %s\n", - SvPV_const_nolen(tmpsv)); + SvPV_nolen_const(tmpsv)); LEAVE; } else |