From a4e14fec987246dde7e9f757a9ae9e1834080d33 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Thu, 14 Nov 2002 23:40:08 +0000 Subject: make perl_checker happy --- perl-install/partition_table/gpt.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'perl-install/partition_table/gpt.pm') diff --git a/perl-install/partition_table/gpt.pm b/perl-install/partition_table/gpt.pm index 01de8f8a7..425a34e39 100644 --- a/perl-install/partition_table/gpt.pm +++ b/perl-install/partition_table/gpt.pm @@ -81,7 +81,7 @@ sub crc32 { my $crc = 0xFFFFFFFF; foreach (unpack "C*", $buffer) { my $subcrc = ($crc ^ $_) & 0xFF; - for (my $j = 8; $j > 0; $j--){ + for (my $j = 8; $j > 0; $j--) { my $b = $subcrc & 1; $subcrc = ($subcrc >> 1) & 0x7FFFFFFF; $subcrc = $subcrc ^ 0xEDB88320 if $b; -- cgit v1.2.1