In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/052efbb4bc89c88e371891d940de33daf2eedf9e?hp=d9cb8415c513b2fde359b11064306563502cbdeb>

- Log -----------------------------------------------------------------
commit 052efbb4bc89c88e371891d940de33daf2eedf9e
Author: David Mitchell <da...@iabyn.com>
Date:   Sat Mar 12 11:09:06 2016 +0000

    APItest.xs silence compiler warning
    
    On Solaris:
        "APItest.xs", line 1519: warning: integer overflow detected: op "<<"
-----------------------------------------------------------------------

Summary of changes:
 ext/XS-APItest/APItest.pm | 2 +-
 ext/XS-APItest/APItest.xs | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ext/XS-APItest/APItest.pm b/ext/XS-APItest/APItest.pm
index 2115580..875579e 100644
--- a/ext/XS-APItest/APItest.pm
+++ b/ext/XS-APItest/APItest.pm
@@ -5,7 +5,7 @@ use strict;
 use warnings;
 use Carp;
 
-our $VERSION = '0.79';
+our $VERSION = '0.80';
 
 require XSLoader;
 
diff --git a/ext/XS-APItest/APItest.xs b/ext/XS-APItest/APItest.xs
index bbd00c7..4d41654 100644
--- a/ext/XS-APItest/APItest.xs
+++ b/ext/XS-APItest/APItest.xs
@@ -1516,7 +1516,7 @@ xsreturn( int len )
 void
 xsreturn_iv()
     PPCODE:
-        XSRETURN_IV( (1<<31) + 1 );
+        XSRETURN_IV(I32_MIN + 1);
 
 void
 xsreturn_uv()

--
Perl5 Master Repository

Reply via email to