From dc9a870f288ed8bd9b03d457b526f614e720f40e Mon Sep 17 00:00:00 2001 From: Father Chrysostomos Date: Sun, 12 Oct 2014 06:36:31 -0700 Subject: Use full name for Perl_tmps_grow_p in EXTEND_MORTAL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit For functions only exported and not public, we can’t use the short forms in pubic macros. --- pp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pp.h') 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. See also C, C and C. 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 -- cgit v1.2.1