summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embed.fnc2
-rw-r--r--proto.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/embed.fnc b/embed.fnc
index 60c27c6565..c7768b58ff 100644
--- a/embed.fnc
+++ b/embed.fnc
@@ -3169,7 +3169,7 @@ Apd |char * |pv_escape |NULLOK SV *dsv \
|const STRLEN count \
|const STRLEN max \
|NULLOK STRLEN * const escaped \
- |const U32 flags
+ |U32 flags
Apd |char * |pv_pretty |NN SV *dsv \
|NN char const * const str \
|const STRLEN count \
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)