From: Simon Ruderich Date: Tue, 17 Apr 2012 18:26:12 +0000 (+0200) Subject: Remove unnecessary output in die. X-Git-Tag: 0.03~17 X-Git-Url: https://ruderich.org/simon/gitweb/?p=blhc%2Fblhc.git;a=commitdiff_plain;h=c7f137f3fdbeb3fc9e300ba41b977d79109967ea Remove unnecessary output in die. --- diff --git a/bin/blhc b/bin/blhc index b8aafb4..e884926 100755 --- a/bin/blhc +++ b/bin/blhc @@ -533,7 +533,7 @@ FILE: foreach my $file (@ARGV) { print "checking '$file'...\n" if scalar @ARGV > 1; - open my $fh, '<', $file or die "$!: $file"; + open my $fh, '<', $file or die $!; # Architecture of this file. my $arch = $option_arch;