diff options
author | Father Chrysostomos <sprout@cpan.org> | 2014-10-12 06:36:31 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2014-10-12 06:48:42 -0700 |
commit | dc9a870f288ed8bd9b03d457b526f614e720f40e (patch) | |
tree | eed77767fbccd7a17f1820de9a4850abc547ca04 /pp.h | |
parent | 2251d43b581f1a38b68f014b3263ed39100a7df4 (diff) | |
download | perl-dc9a870f288ed8bd9b03d457b526f614e720f40e.tar.gz |
Use full name for Perl_tmps_grow_p in EXTEND_MORTAL
For functions only exported and not public, we can’t use the short
forms in pubic macros.
Diffstat (limited to 'pp.h')
-rw-r--r-- | pp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -394,7 +394,7 @@ Does not use C<TARG>. See also C<XPUSHu>, C<mPUSHu> and C<PUSHu>. STMT_START { \ SSize_t eMiX = PL_tmps_ix + (n); \ if (UNLIKELY(eMiX >= PL_tmps_max)) \ - (void)tmps_grow_p(eMiX); \ + (void)Perl_tmps_grow_p(aTHX_ eMiX); \ } STMT_END #define AMGf_noright 1 |