summaryrefslogtreecommitdiff
path: root/hv.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2008-05-10 16:44:45 +0000
committerNicholas Clark <nick@ccl4.org>2008-05-10 16:44:45 +0000
commit547bb2675d6f6f0c11281a37d160943a92b3a025 (patch)
tree55778c3a42de41b48b19f3757888cf53dc92723d /hv.c
parent500a801928e3d02ca64835521d3b82c60838e663 (diff)
downloadperl-547bb2675d6f6f0c11281a37d160943a92b3a025.tar.gz
Run Porting/checkARGS_ASSERT.pl and fix what it picks up. (Which,
coincidentally were both from changes I made) p4raw-id: //depot/perl@33814
Diffstat (limited to 'hv.c')
-rw-r--r--hv.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/hv.c b/hv.c
index 6d33966577..acc58e20ff 100644
--- a/hv.c
+++ b/hv.c
@@ -2925,6 +2925,8 @@ Perl_fetch_cop_label(pTHX_ struct refcounted_he *const chain, STRLEN *len,
struct refcounted_he *
Perl_store_cop_label(pTHX_ struct refcounted_he *const chain, const char *label)
{
+ PERL_ARGS_ASSERT_STORE_COP_LABEL;
+
return refcounted_he_new_common(chain, ":", 1, HVrhek_PV, HVrhek_PV,
label, strlen(label));
}