In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/be99e2c20544013502fa8586131363e94dfa69a3?hp=273a0bac1154c5302f5b2421760bf4bd9be17110>
- Log ----------------------------------------------------------------- commit be99e2c20544013502fa8586131363e94dfa69a3 Author: Karl Williamson <[email protected]> Date: Thu May 11 18:30:34 2017 -0600 utf8.c: Add missing 'const' to formal parameter This makes it match the embed.fnc entry. For some reason no warning was given except by the Win32 compiler ----------------------------------------------------------------------- Summary of changes: utf8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utf8.c b/utf8.c index c84fa98310..e8e143c49e 100644 --- a/utf8.c +++ b/utf8.c @@ -2604,7 +2604,7 @@ S_warn_on_first_deprecated_use(pTHX_ const char * const name, bool Perl__is_utf8_FOO(pTHX_ U8 classnum, - const U8 *p, + const U8 * const p, const char * const name, const char * const alternative, const bool use_utf8, -- Perl5 Master Repository
