summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorAndy Dougherty <doughera@lafayette.edu>2013-01-25 10:12:35 -0500
committerAndy Dougherty <doughera@lafayette.edu>2013-01-25 10:12:35 -0500
commitc77ce6f12343471289c57516378e4af4ccce4b6c (patch)
tree5dd0a3e7141f3b1bade3526c0c396a4335f00d5e /proto.h
parentfcf7ecec7870a77b25e5f00a8b4702e3aee3318d (diff)
downloadperl-c77ce6f12343471289c57516378e4af4ccce4b6c.tar.gz
Correct variable names in embed.fnc for hv_free_ent and hv_free_ent_ret.
Make the second variable name in embed.fnc match those used in the actual function declaration. This will matter if we add in 'entry' to PERL_ARGS_ASSERT_HV_FREE_ENT_RET. Also regen headers (only proto.h is affected) to match.
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto.h b/proto.h
index 67eea1d909..1953caee7a 100644
--- a/proto.h
+++ b/proto.h
@@ -1549,7 +1549,7 @@ PERL_CALLCONV STRLEN Perl_hv_fill(pTHX_ HV const *const hv)
#define PERL_ARGS_ASSERT_HV_FILL \
assert(hv)
-PERL_CALLCONV void Perl_hv_free_ent(pTHX_ HV *hv, HE *entryK)
+PERL_CALLCONV void Perl_hv_free_ent(pTHX_ HV *hv, HE *entry)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_HV_FREE_ENT \
assert(hv)
@@ -5708,7 +5708,7 @@ STATIC struct xpvhv_aux* S_hv_auxinit(HV *hv)
assert(hv)
STATIC SV* S_hv_delete_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen, int k_flags, I32 d_flags, U32 hash);
-STATIC SV* S_hv_free_ent_ret(pTHX_ HV *hv, HE *entryK)
+STATIC SV* S_hv_free_ent_ret(pTHX_ HV *hv, HE *entry)
__attribute__nonnull__(pTHX_1);
#define PERL_ARGS_ASSERT_HV_FREE_ENT_RET \
assert(hv)