diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 52fa237899f8..976c3eb46b62 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -214,8 +214,8 @@ package Maintainers; }, 'Compress::Raw::Bzip2' => { - 'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.212.tar.gz', - 'SYNCINFO' => 'LeoNerd on Sat Apr 27 14:06:26 2024', + 'DISTRIBUTION' => 'PMQS/Compress-Raw-Bzip2-2.213.tar.gz', + 'SYNCINFO' => 'jkeenan on Wed Aug 28 14:11:20 2024', 'FILES' => q[cpan/Compress-Raw-Bzip2], 'EXCLUDED' => [ qr{^t/Test/}, diff --git a/cpan/Compress-Raw-Bzip2/Bzip2.xs b/cpan/Compress-Raw-Bzip2/Bzip2.xs index 83a261f0dc29..794e29f4cdfa 100644 --- a/cpan/Compress-Raw-Bzip2/Bzip2.xs +++ b/cpan/Compress-Raw-Bzip2/Bzip2.xs @@ -373,9 +373,6 @@ new(className, appendOut=1, blockSize100k=1, workfactor=0, verbosity=0) s = NULL ; } else { - int flags = 0 ; - if (appendOut) - flags |= FLAG_APPEND_OUTPUT; PostInitStream(s, appendOut ? FLAG_APPEND_OUTPUT :0) ; } } diff --git a/cpan/Compress-Raw-Bzip2/bzip2-src/blocksort.c b/cpan/Compress-Raw-Bzip2/bzip2-src/blocksort.c index 04d3abcc7a96..eab1ec49e54a 100644 --- a/cpan/Compress-Raw-Bzip2/bzip2-src/blocksort.c +++ b/cpan/Compress-Raw-Bzip2/bzip2-src/blocksort.c @@ -764,6 +764,9 @@ void mainSort ( UInt32* ptr, UChar c1; Int32 numQSorted; UInt16 s; + + ((void)numQSorted); /* Silence variable ‘numQSorted’ set but not used warning */ + if (verb >= 4) VPrintf0 ( " main sort initialise ...\n" ); /*-- set up the 2-byte frequency table --*/ diff --git a/cpan/Compress-Raw-Bzip2/bzip2-src/compress.c b/cpan/Compress-Raw-Bzip2/bzip2-src/compress.c index 136bec129a8c..e1df0c488154 100644 --- a/cpan/Compress-Raw-Bzip2/bzip2-src/compress.c +++ b/cpan/Compress-Raw-Bzip2/bzip2-src/compress.c @@ -266,6 +266,7 @@ void sendMTFValues ( EState* s ) UInt16* mtfv = s->mtfv; ((void)nBytes); /* Silence variable ‘nBytes’ set but not used warning */ + ((void)totc); /* Silence variable ‘totc’ set but not used warning */ if (s->verbosity >= 3) VPrintf3( " %d in block, %d after MTF & 1-2 coding, " "%d+2 syms in use\n", diff --git a/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm b/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm index 29fb150b5c97..ea9d38c55ce6 100644 --- a/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm +++ b/cpan/Compress-Raw-Bzip2/lib/Compress/Raw/Bzip2.pm @@ -11,7 +11,7 @@ use Carp ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, $AUTOLOAD); -$VERSION = '2.212'; +$VERSION = '2.213'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; diff --git a/cpan/Compress-Raw-Bzip2/t/000prereq.t b/cpan/Compress-Raw-Bzip2/t/000prereq.t index 57ec5380fa9f..7d09746205d5 100644 --- a/cpan/Compress-Raw-Bzip2/t/000prereq.t +++ b/cpan/Compress-Raw-Bzip2/t/000prereq.t @@ -19,7 +19,7 @@ BEGIN if eval { require Test::NoWarnings ; import Test::NoWarnings; 1 }; - my $VERSION = '2.212'; + my $VERSION = '2.213'; my @NAMES = qw( );