summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2023-02-08 09:04:20 -0700
committerYves Orton <demerphq@gmail.com>2023-02-09 16:43:42 +0800
commit35b3adc04efc1e4fd37c5101758174eb0615a409 (patch)
tree2b1ed183dc3e2120dc7cdbd84a0fa2c1594a9404 /proto.h
parente7252fd45274f6b0c6e32ef76b6e0e325eb5ce5b (diff)
downloadperl-35b3adc04efc1e4fd37c5101758174eb0615a409.tar.gz
Fix pv_escape() param discrepancy embed.fnc, source
embed.fnc declared a STRLEN parameter as const, but it isn't
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 2de342bc85..a4f9c5f606 100644
--- a/proto.h
+++ b/proto.h
@@ -3561,7 +3561,7 @@ Perl_pv_display(pTHX_ SV *dsv, const char *pv, STRLEN cur, STRLEN len, STRLEN pv
assert(dsv); assert(pv)
PERL_CALLCONV char *
-Perl_pv_escape(pTHX_ SV *dsv, char const * const str, const STRLEN count, const STRLEN max, STRLEN * const escaped, U32 flags);
+Perl_pv_escape(pTHX_ SV *dsv, char const * const str, const STRLEN count, STRLEN max, STRLEN * const escaped, U32 flags);
#define PERL_ARGS_ASSERT_PV_ESCAPE \
assert(str)