Subject: | binmode does not accept 1 or 2 parameters but this are the typical calls. |
Please change IO::File 1.14 from
0196: ( @_ == 1 or @_ == 2 ) or croak 'usage $fh->binmode([LAYER])';
to
0196: ( @_ == 1 && @_ == 2 ) or croak 'usage $fh->binmode([LAYER])';