This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
regcomp.c: Special case /[UV_MAX]/
[perl5.git] / sv.c
diff --git a/sv.c b/sv.c
index 77bb664..779c414 100644 (file)
--- a/sv.c
+++ b/sv.c
@@ -13904,7 +13904,7 @@ Perl_varname(pTHX_ const GV *const gv, const char gvtype, PADOFFSET targ,
 
        if (!cv || !CvPADLIST(cv))
            return NULL;
-       av = *PADLIST_ARRAY(CvPADLIST(cv));
+       av = *PadlistARRAY(CvPADLIST(cv));
        sv = *av_fetch(av, targ, FALSE);
        sv_setsv(name, sv);
     }