summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorKarl Williamson <khw@cpan.org>2018-03-31 15:29:34 -0600
committerKarl Williamson <khw@cpan.org>2018-03-31 16:03:22 -0600
commit32b540f2ad60cd82f70766d732d18bf501f17ab9 (patch)
treef9ae73eb321d988dea425fdb8421027f0c5ad45d /utf8.c
parent7c0ab9502f21a6f698530941dfcc8635acbcb693 (diff)
downloadperl-32b540f2ad60cd82f70766d732d18bf501f17ab9.tar.gz
utf8.c: Add missing const in formal parameter
Only the win32 compiler caught this
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 42b0e06dbd..6b0bb630dd 100644
--- a/utf8.c
+++ b/utf8.c
@@ -3469,7 +3469,7 @@ STATIC UV
S__to_utf8_case(pTHX_ const UV uv1, const U8 *p,
U8* ustrp, STRLEN *lenp,
SV *invlist, const int * const invmap,
- const int * const * aux_tables,
+ const int * const * const aux_tables,
const U8 * const aux_table_lengths,
const char * const normal)
{