From: Nicholas Clark Date: Mon, 20 Feb 2006 00:21:09 +0000 (+0000) Subject: Remove the last (U16) cast for CV depths, missed by change 17835. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=1a5b3db469280dd5cf664d996d7209b0219449ef;p=p5sagit%2Fp5-mst-13.2.git Remove the last (U16) cast for CV depths, missed by change 17835. p4raw-id: //depot/perl@27235 --- diff --git a/pp_ctl.c b/pp_ctl.c index 2b207e4..4833218 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)