summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-09-19 18:48:10 +0000
committerNicholas Clark <nick@ccl4.org>2005-09-19 18:48:10 +0000
commit5c4138a025eda994be5274f8b136021be9f9119e (patch)
treeb5c61ce98d11757d1ce22f30728dc84667dedf3e /proto.h
parentffd4ff43bd2a65a31e5f3808320b98b9851ba91e (diff)
downloadperl-5c4138a025eda994be5274f8b136021be9f9119e.tar.gz
First argument to he_dup is actually a const HE *
p4raw-id: //depot/perl@25497
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 98c3fd90ab..b7d8918b34 100644
--- a/proto.h
+++ b/proto.h
@@ -2603,7 +2603,7 @@ PERL_CALLCONV void* Perl_any_dup(pTHX_ void* v, const PerlInterpreter* proto_per
__attribute__warn_unused_result__
__attribute__nonnull__(pTHX_2);
-PERL_CALLCONV HE* Perl_he_dup(pTHX_ HE* e, bool shared, CLONE_PARAMS* param)
+PERL_CALLCONV HE* Perl_he_dup(pTHX_ const HE* e, bool shared, CLONE_PARAMS* param)
__attribute__malloc__
__attribute__warn_unused_result__
__attribute__nonnull__(pTHX_3);