diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-20 00:21:09 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-20 00:21:09 +0000 |
commit | 1a5b3db469280dd5cf664d996d7209b0219449ef (patch) | |
tree | 56af9dbae0549f2f953af29e7db4f296cc8ba516 /pp_ctl.c | |
parent | 5b4563c8796d609e1b00a7e3af7630b7fee611ae (diff) | |
download | perl-1a5b3db469280dd5cf664d996d7209b0219449ef.tar.gz |
Remove the last (U16) cast for CV depths, missed by change 17835.
p4raw-id: //depot/perl@27235
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2417,7 +2417,7 @@ PP(pp_goto) cx->blk_sub.hasargs = 0; } cx->blk_sub.cv = cv; - cx->blk_sub.olddepth = (U16)CvDEPTH(cv); + cx->blk_sub.olddepth = CvDEPTH(cv); CvDEPTH(cv)++; if (CvDEPTH(cv) < 2) |