This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b4563c
)
Remove the last (U16) cast for CV depths, missed by change 17835.
author
Nicholas Clark
<nick@ccl4.org>
Mon, 20 Feb 2006 00:21:09 +0000
(
00:21
+0000)
committer
Nicholas Clark
<nick@ccl4.org>
Mon, 20 Feb 2006 00:21:09 +0000
(
00:21
+0000)
p4raw-id: //depot/perl@27235
pp_ctl.c
patch
|
blob
|
blame
|
history
diff --git
a/pp_ctl.c
b/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)