summaryrefslogtreecommitdiff
path: root/pp_hot.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-12-08 16:52:37 -0800
committerFather Chrysostomos <sprout@cpan.org>2012-12-09 18:47:21 -0800
commitfc99edcf6b3d3de59f7bdefc42a09167fd8b96f5 (patch)
tree168ee3780065d07103930e86c76ff5689efa8567 /pp_hot.c
parent05fbd38ddf3c46a4eef17ff66379724f742f015f (diff)
downloadperl-fc99edcf6b3d3de59f7bdefc42a09167fd8b96f5.tar.gz
Remove the second param to tryAMAGICunTARGETlist
This parameter is no longer used. Its value is always 0.
Diffstat (limited to 'pp_hot.c')
-rw-r--r--pp_hot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp_hot.c b/pp_hot.c
index 59981102d2..feba395014 100644
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -425,7 +425,7 @@ PP(pp_readline)
dSP;
if (TOPs) {
SvGETMAGIC(TOPs);
- tryAMAGICunTARGETlist(iter_amg, 0, 0);
+ tryAMAGICunTARGETlist(iter_amg, 0);
PL_last_in_gv = MUTABLE_GV(*PL_stack_sp--);
}
else PL_last_in_gv = PL_argvgv, PL_stack_sp--;