summaryrefslogtreecommitdiff
path: root/proto.h
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2022-10-08 06:16:18 -0600
committerYves Orton <demerphq@gmail.com>2023-02-07 21:26:50 +0800
commit923d5d2113e738eea21d56eb8f1589c6b3506f02 (patch)
tree8657a14a365a3e0b4b72ce042c2b40ee158803ac /proto.h
parent92373dea9d7bcc0a017f20cb37192c1d8400767f (diff)
downloadperl-923d5d2113e738eea21d56eb8f1589c6b3506f02.tar.gz
pv_escape(): Fix compiler warning
A parameter to this function was declared const in embed.fnc, but it isn't const
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 286c2e18a7..ea56c4d604 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, const U32 flags);
+Perl_pv_escape(pTHX_ SV *dsv, char const * const str, const STRLEN count, const STRLEN max, STRLEN * const escaped, U32 flags);
#define PERL_ARGS_ASSERT_PV_ESCAPE \
assert(str)