summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2003-11-22 11:02:23 +0000
committerNicholas Clark <nick@ccl4.org>2003-11-22 11:02:23 +0000
commita8adfdb3e1797035789adf01f3fb1593e93bde6b (patch)
treeb21cb621957e293e54b9123a6fd01402f06203aa /proto.h
parent9b7c1c416b1df37975076158920b5c2b361392c1 (diff)
downloadperl-a8adfdb3e1797035789adf01f3fb1593e93bde6b.tar.gz
Shift negative klen/flags games from hv_store_common out to hv_store
p4raw-id: //depot/perl@21769
Diffstat (limited to 'proto.h')
-rw-r--r--proto.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/proto.h b/proto.h
index 15b65942c8..9bef9ba306 100644
--- a/proto.h
+++ b/proto.h
@@ -1338,7 +1338,7 @@ PERL_CALLCONV void Perl_hv_assert(pTHX_ HV* tb);
STATIC SV* S_hv_delete_common(pTHX_ HV* tb, SV* key_sv, const char* key, STRLEN klen, int k_flags, I32 d_flags, U32 hash);
STATIC bool S_hv_exists_common(pTHX_ HV* tb, SV* key_sv, const char* key, STRLEN klen, int flags, U32 hash);
STATIC HE* S_hv_fetch_common(pTHX_ HV* tb, SV* key_sv, const char* key, STRLEN klen, int flags, int action, U32 hash);
-STATIC HE* S_hv_store_common(pTHX_ HV* tb, SV* key_sv, const char* key, I32 klen, int flags, SV* val, U32 hash);
+STATIC HE* S_hv_store_common(pTHX_ HV* tb, SV* key_sv, const char* key, STRLEN klen, int flags, SV* val, U32 hash);
#endif
PERL_CALLCONV void Perl_hv_clear_placeholders(pTHX_ HV* hb);