Remove the last (U16) cast for CV depths, missed by change 17835.
Nicholas Clark [Mon, 20 Feb 2006 00:21:09 +0000 (00:21 +0000)]
p4raw-id: //depot/perl@27235

pp_ctl.c

index 2b207e4..4833218 100644 (file)
--- 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)