freebsd-ports/graphics/netpbm/files/patch-editor-pnmquant
2011-04-22 05:59:05 +00:00

20 lines
599 B
Text

--- editor/pnmquant.orig 2006-08-19 05:12:28.000000000 +0200
+++ editor/pnmquant 2010-05-21 10:37:10.000000000 +0200
@@ -149,7 +149,7 @@
tell(INFH); # Avoids bogus "INFH is not referenced" warning
}
} else {
- open(STDIN, "<", $infile)
+ open(STDIN, "<" . $infile)
or die("Unable to open input file '$infile'. Errno=$ERRNO");
}
}
@@ -194,7 +194,7 @@
push(@options, '-quiet');
}
- open(STDOUT, ">", $mapfileSpec);
+ open(STDOUT, ">" . $mapfileSpec);
my $maprc = system("pnmcolormap", $ncolors, @options);