summaryrefslogtreecommitdiffstats
path: root/perl-install/commands.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/commands.pm')
-rw-r--r--perl-install/commands.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/commands.pm b/perl-install/commands.pm
index 3ff726617..d86ef2c19 100644
--- a/perl-install/commands.pm
+++ b/perl-install/commands.pm
@@ -336,7 +336,7 @@ sub strings {
sub hexdump {
my $i = 0; $/ = \16; @ARGV = @_; while (<>) {
printf "%08lX ", $i; $i += 16;
- print join(" ", map({ sprintf "%02X", $_ } unpack("C*", $_)),
+ print join(" ", (map { sprintf "%02X", $_ } unpack("C*", $_)),
($_ =~ s/[^$printable_chars]/./og, $_)[1]), "\n";
}
}