summaryrefslogtreecommitdiff
path: root/pp_ctl.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2006-02-20 00:21:09 +0000
committerNicholas Clark <nick@ccl4.org>2006-02-20 00:21:09 +0000
commit1a5b3db469280dd5cf664d996d7209b0219449ef (patch)
tree56af9dbae0549f2f953af29e7db4f296cc8ba516 /pp_ctl.c
parent5b4563c8796d609e1b00a7e3af7630b7fee611ae (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_ctl.c b/pp_ctl.c
index 2b207e4ae3..4833218adf 100644
--- a/pp_ctl.c
+++ b/pp_ctl.c
@@ -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)