diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-08-20 14:14:34 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-08-20 17:34:39 +0100 |
commit | 029821316c3d1268a765152507ac4ffb64746558 (patch) | |
tree | ea3380126d503c6a06b58ff518a2ebaaf5c5a803 /embed.h | |
parent | 29657bb6c05aaef4172308097542f56a92e02a08 (diff) | |
download | perl-029821316c3d1268a765152507ac4ffb64746558.tar.gz |
In sv.c, pass in values to S_more_bodies, instead of using bodies_by_type.
Also fix one value passed to the debugging *_printf() in the #else block.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4070,7 +4070,7 @@ # endif #ifdef PERL_CORE #define more_sv() S_more_sv(aTHX) -#define more_bodies(a) S_more_bodies(aTHX_ a) +#define more_bodies(a,b,c) S_more_bodies(aTHX_ a,b,c) #define sv_2iuv_common(a) S_sv_2iuv_common(aTHX_ a) #define glob_assign_glob(a,b,c) S_glob_assign_glob(aTHX_ a,b,c) #define glob_assign_ref(a,b) S_glob_assign_ref(aTHX_ a,b) |