summaryrefslogtreecommitdiff
path: root/scope.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-01-20 13:28:10 +0000
committerNicholas Clark <nick@ccl4.org>2008-01-20 13:28:10 +0000
commit0cbdab387091772196a9652896d774ed74da2f21 (patch)
tree41e8917a1a5174a46027260a320cdff424681cda /scope.c
parentd11865445af8750ad2c09674e81b7941117e83b5 (diff)
downloadperl-0cbdab387091772196a9652896d774ed74da2f21.tar.gz
In struct block_loop access element label via the macro CxLABEL()
(for the places that aren't about to change) p4raw-id: //depot/perl@33010
Diffstat (limited to 'scope.c')
-rw-r--r--scope.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/scope.c b/scope.c
index 17b778989c..c074b696c5 100644
--- a/scope.c
+++ b/scope.c
@@ -1085,8 +1085,7 @@ Perl_cx_dump(pTHX_ PERL_CONTEXT *cx)
break;
case CXt_LOOP:
- PerlIO_printf(Perl_debug_log, "BLK_LOOP.LABEL = %s\n",
- cx->blk_loop.label);
+ PerlIO_printf(Perl_debug_log, "BLK_LOOP.LABEL = %s\n", CxLABEL(cx));
PerlIO_printf(Perl_debug_log, "BLK_LOOP.RESETSP = %ld\n",
(long)cx->blk_loop.resetsp);
PerlIO_printf(Perl_debug_log, "BLK_LOOP.MY_OP = 0x%"UVxf"\n",