summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2019-11-16 05:28:41 -0700
committerKarl Williamson <khw@cpan.org>2019-11-16 05:58:47 -0700
commit0c22dc835257d738c02319da792a7707bbc75dcf (patch)
treec8128eefa90b980e5899f76510e58e2b0f555e3e /proto.h
parent2077aa94255b801f80c7c0f291ea8e57b37c6167 (diff)
downloadperl-0c22dc835257d738c02319da792a7707bbc75dcf.tar.gz
embed.fnc: Parameter is really a const
Make it so.
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 84a0aeadf2..3278c9bcbb 100644
--- a/proto.h
+++ b/proto.h
@@ -6334,7 +6334,7 @@ STATIC int S_yywarn(pTHX_ const char *const s, U32 flags);
#endif
#if defined(PERL_IN_UNIVERSAL_C)
STATIC bool S_isa_lookup(pTHX_ HV *stash, SV *namesv, const char * name, STRLEN len, U32 flags);
-STATIC bool S_sv_derived_from_svpvn(pTHX_ SV *sv, SV *namesv, const char * name, STRLEN len, U32 flags);
+STATIC bool S_sv_derived_from_svpvn(pTHX_ SV *sv, SV *namesv, const char * name, const STRLEN len, U32 flags);
#endif
#if defined(PERL_IN_UTF8_C)
STATIC UV S__to_utf8_case(pTHX_ const UV uv1, const U8 *p, U8* ustrp, STRLEN *lenp, SV *invlist, const int * const invmap, const unsigned int * const * const aux_tables, const U8 * const aux_table_lengths, const char * const normal);