summaryrefslogtreecommitdiff
path: root/mathoms.c
diff options
context:
space:
mode:
authorDaniel Dragan <bulk88@hotmail.com>2013-12-23 02:11:29 -0500
committerFather Chrysostomos <sprout@cpan.org>2013-12-23 08:25:08 -0800
commite8f91c91cc7c3a4a35c08d16f350eabe4852cdf4 (patch)
tree5b7a8a4380ed25dc73dffc08887a74d0794e7925 /mathoms.c
parent8c74b41425572faeb638f1269025b59d0785794f (diff)
downloadperl-e8f91c91cc7c3a4a35c08d16f350eabe4852cdf4.tar.gz
[perl #115736] fix undocumented param from newATTRSUB_flags
flags param was poorly designed and didn't have a formal api. Replace it with the bool it really is. See #115736 for details.
Diffstat (limited to 'mathoms.c')
-rw-r--r--mathoms.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mathoms.c b/mathoms.c
index 0543e88c7e..2f91e5759d 100644
--- a/mathoms.c
+++ b/mathoms.c
@@ -1170,7 +1170,7 @@ Perl_custom_op_desc(pTHX_ const OP* o)
CV *
Perl_newSUB(pTHX_ I32 floor, OP *o, OP *proto, OP *block)
{
- return Perl_newATTRSUB(aTHX_ floor, o, proto, NULL, block);
+ return newATTRSUB(floor, o, proto, NULL, block);
}
UV