From 923d5d2113e738eea21d56eb8f1589c6b3506f02 Mon Sep 17 00:00:00 2001 From: Karl Williamson Date: Sat, 8 Oct 2022 06:16:18 -0600 Subject: pv_escape(): Fix compiler warning A parameter to this function was declared const in embed.fnc, but it isn't const --- proto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'proto.h') 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) -- cgit v1.2.1