diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-11-27 16:48:48 -0800 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-11-30 11:48:38 -0800 |
commit | 95a55f11be5ebcdd3f9e743a92bae2ccdb4720ea (patch) | |
tree | b5a9742a296c8c1c55c9c8bb7e5607c0af8dc3e5 /dump.c | |
parent | 0d1e9135a626ca23109d6ed25ddc71687b38615c (diff) | |
download | perl-95a55f11be5ebcdd3f9e743a92bae2ccdb4720ea.tar.gz |
Use PADNAME rather than SV in dump.c:debop
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2295,7 +2295,7 @@ Perl_debop(pTHX_ const OP *o) /* print the lexical's name */ { CV * const cv = deb_curcv(cxstack_ix); - SV *sv; + PADNAME *sv; PADNAMELIST * comppad = NULL; int i; @@ -2307,7 +2307,7 @@ Perl_debop(pTHX_ const OP *o) for (i = 0; i < count; i++) { if (comppad && (sv = padnamelist_fetch(comppad, o->op_targ + i))) - PerlIO_printf(Perl_debug_log, "%s", SvPV_nolen_const(sv)); + PerlIO_printf(Perl_debug_log, "%"PNf, PNfARG(sv)); else PerlIO_printf(Perl_debug_log, "[%"UVuf"]", (UV)o->op_targ+i); |