summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2017-07-01 16:40:24 +0200
committerYves Orton <demerphq@gmail.com>2017-07-01 16:40:24 +0200
commit367fba63570ae69f0c310ebb1390b5784c57bd6f (patch)
tree42fd7500d4ee71b2048094ce846c722c506138f0 /hv.c
parentb6bb1ecbab2ac366ccb94da3406d2edf38553b42 (diff)
downloadperl-367fba63570ae69f0c310ebb1390b5784c57bd6f.tar.gz
hv.c: fixup args assert for HV_FREE_ENTRIES
Diffstat (limited to 'hv.c')
-rw-r--r--hv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hv.c b/hv.c
index 61f1f8f551..3da7910d50 100644
--- a/hv.c
+++ b/hv.c
@@ -1857,7 +1857,7 @@ S_hv_free_entries(pTHX_ HV *hv)
XPVHV * const xhv = (XPVHV*)SvANY(hv);
SV *sv;
- PERL_ARGS_ASSERT_HFREEENTRIES;
+ PERL_ARGS_ASSERT_HV_FREE_ENTRIES;
while ((sv = Perl_hfree_next_entry(aTHX_ hv, &index))||xhv->xhv_keys) {
SvREFCNT_dec(sv);