diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-20 19:56:21 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-20 19:56:21 +0000 |
commit | f9c764c5b8dcfa74adde8337ee9a5db227b55f56 (patch) | |
tree | 3bef743c1500b5191940af9dffa587e8a719f819 /pp_sys.c | |
parent | c2d565bf20398393b9b05727867496686647584f (diff) | |
download | perl-f9c764c5b8dcfa74adde8337ee9a5db227b55f56.tar.gz |
Split struct block_sub into struct block_sub and struct block_format.
(CXt_SUB and CXt_FORMAT were using some comon members, but some members
were only for one or the other.)
p4raw-id: //depot/perl@33014
Diffstat (limited to 'pp_sys.c')
-rw-r--r-- | pp_sys.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1304,7 +1304,7 @@ PP(pp_enterwrite) PP(pp_leavewrite) { dVAR; dSP; - GV * const gv = cxstack[cxstack_ix].blk_sub.gv; + GV * const gv = cxstack[cxstack_ix].blk_format.gv; register IO * const io = GvIOp(gv); PerlIO *ofp; PerlIO *fp; |