summaryrefslogtreecommitdiffstats
path: root/perl-install/partition_table/gpt.pm
diff options
context:
space:
mode:
Diffstat (limited to 'perl-install/partition_table/gpt.pm')
-rw-r--r--perl-install/partition_table/gpt.pm2
1 files changed, 1 insertions, 1 deletions
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;