summaryrefslogtreecommitdiff
path: root/cv.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-11-21 00:05:00 -0800
committerFather Chrysostomos <sprout@cpan.org>2014-11-21 00:24:57 -0800
commite69651e7f17a3e1bb02146eaba10463f0375c84e (patch)
tree3eeb4f711c7f7f13bb59f4351b02c7e07d65cadc /cv.h
parent5119ebe1e5c8604dd457794254aa37705a17e5bf (diff)
downloadperl-e69651e7f17a3e1bb02146eaba10463f0375c84e.tar.gz
Remove context param from set_padlist
It doesn’t need it.
Diffstat (limited to 'cv.h')
-rw-r--r--cv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cv.h b/cv.h
index 5e69ef530b..a3cbdb3373 100644
--- a/cv.h
+++ b/cv.h
@@ -71,7 +71,7 @@ See L<perlguts/Autoloading with XSUBs>.
&(((XPVCV*)MUTABLE_PTR(SvANY(sv)))->xcv_padlist_u.xcv_padlist)))
/* CvPADLIST_set is not public API, it can be removed one day, once stabilized */
#ifdef DEBUGGING
-# define CvPADLIST_set(sv, padlist) Perl_set_padlist(aTHX_ (CV*)sv, padlist)
+# define CvPADLIST_set(sv, padlist) Perl_set_padlist((CV*)sv, padlist)
#else
# define CvPADLIST_set(sv, padlist) (CvPADLIST(sv) = (padlist))
#endif