From a419039b11d02b7ef2b7f894b199b245a7876303 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Wed, 30 Apr 2003 10:09:27 +0000 Subject: perl_checker compliance --- perl-install/partition_table/sun.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/partition_table/sun.pm') diff --git a/perl-install/partition_table/sun.pm b/perl-install/partition_table/sun.pm index bcae6d296..9dcae18de 100644 --- a/perl-install/partition_table/sun.pm +++ b/perl-install/partition_table/sun.pm @@ -66,7 +66,7 @@ sub compute_crc($) { my @l2b = unpack "n256", $tmp; my $crc = 0; - map { $crc ^= $_ } @l2b; + $crc ^= $_ foreach @l2b; $crc; } -- cgit v1.2.1