diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-08-15 22:27:54 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-08-21 16:51:14 -0700 |
commit | b70d55581aad461af858eb07a2e80ed5fcc653c1 (patch) | |
tree | cd79a718eca54f6504b4f6fe843d4c44a63bdcb6 /pp_sort.c | |
parent | 6763423431e1ea415b9abe4d7d5d8715e9203fc3 (diff) | |
download | perl-b70d55581aad461af858eb07a2e80ed5fcc653c1.tar.gz |
Use PADLIST in more places
Much code relies on the fact that PADLIST is typedeffed as AV.
PADLIST should be treated as a distinct type.
Diffstat (limited to 'pp_sort.c')
-rw-r--r-- | pp_sort.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1667,7 +1667,7 @@ PP(pp_sort) if (CvDEPTH(cv)) SvREFCNT_inc_simple_void_NN(cv); PUSHSUB(cx); if (!is_xsub) { - AV* const padlist = CvPADLIST(cv); + PADLIST * const padlist = CvPADLIST(cv); if (++CvDEPTH(cv) >= 2) { PERL_STACK_OVERFLOW_CHECK(); |