In perl.git, the branch blead has been updated <https://perl5.git.perl.org/perl.git/commitdiff/013f4e0383e9c5115a28838e882eb9cb8a7aeaed?hp=33e5a354e61aad64afe0e1a4f53773e8547515bf>
- Log ----------------------------------------------------------------- commit 013f4e0383e9c5115a28838e882eb9cb8a7aeaed Author: Karl Williamson <k...@cpan.org> Date: Sun Feb 25 11:56:44 2018 -0700 locale.c: Silence compiler warning The Windows compiler no longer raises a warning if we change this UV to a plain unsigned. ----------------------------------------------------------------------- Summary of changes: locale.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locale.c b/locale.c index 2b1701fda4..809b6b9499 100644 --- a/locale.c +++ b/locale.c @@ -1466,7 +1466,7 @@ S_new_ctype(pTHX_ const char *newctype) * POSIX::setlocale() */ dVAR; - UV i; + unsigned int i; /* Don't check for problems if we are suppressing the warnings */ bool check_for_problems = ckWARN_d(WARN_LOCALE) || UNLIKELY(DEBUG_L_TEST); -- Perl5 Master Repository