ports/graphics/p5-Image-Info/files/5.005-lib::Image::Info::PPM.pm
Mathieu Arnold a28c97799e Update to 1.16 (1.12 was not available any more)
Approved by:	maintainer timeout
2004-03-30 15:08:58 +00:00

12 lines
384 B
Perl

--- lib/Image/Info/PPM.pm~ Mon Oct 6 18:38:53 2003
+++ lib/Image/Info/PPM.pm Mon Mar 22 14:29:29 2004
@@ -39,7 +39,8 @@
$type = shift(@header);
$type =~ s/^P// || die;
$binary++ if $type > 3;
- $type = "p" . qw/p b g/[$type % 3] . "m";
+ my @typetmp = qw/p b g/;
+ $type = "p" . $typetmp[$type % 3] . "m";
$num_wanted = 2 if $type eq "pbm";
}