summaryrefslogtreecommitdiff
path: root/embed.fnc
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 /embed.fnc
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 'embed.fnc')
-rw-r--r--embed.fnc2
1 files changed, 1 insertions, 1 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 \