summaryrefslogtreecommitdiff
path: root/pp.h
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2014-10-12 06:36:31 -0700
committerFather Chrysostomos <sprout@cpan.org>2014-10-12 06:48:42 -0700
commitdc9a870f288ed8bd9b03d457b526f614e720f40e (patch)
treeeed77767fbccd7a17f1820de9a4850abc547ca04 /pp.h
parent2251d43b581f1a38b68f014b3263ed39100a7df4 (diff)
downloadperl-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/pp.h b/pp.h
index 0ced1d6111..f236185a0a 100644
--- a/pp.h
+++ b/pp.h
@@ -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