diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2004-06-17 23:48:00 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2004-06-17 23:48:00 +0000 |
commit | 4a1765bdc9774cddd79a1a61c41753b81228e17f (patch) | |
tree | 33ae85943a2abd1b036e67bdc283560409230c8f /perl-install | |
parent | da947d1730fb19c4b3aa181a5b9919eaba8f92be (diff) | |
download | drakx-4a1765bdc9774cddd79a1a61c41753b81228e17f.tar drakx-4a1765bdc9774cddd79a1a61c41753b81228e17f.tar.gz drakx-4a1765bdc9774cddd79a1a61c41753b81228e17f.tar.bz2 drakx-4a1765bdc9774cddd79a1a61c41753b81228e17f.tar.xz drakx-4a1765bdc9774cddd79a1a61c41753b81228e17f.zip |
perl_checker cleanup
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/harddrake2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/harddrake2 b/perl-install/standalone/harddrake2 index 47c60073e..af46cd9c2 100755 --- a/perl-install/standalone/harddrake2 +++ b/perl-install/standalone/harddrake2 @@ -314,7 +314,7 @@ foreach (@classes) { if ($Ident eq "HARDDISK") { my $hd = $_; my $info = find { $_->{device} eq $hd->{device} } @{$all_hds->{hds}}; - $hd->{geometry} = join('/', map { $info->{geom}{$_} } qw(cylinders heads sectors)) . (" (CHS)"); + $hd->{geometry} = join('/', map { $info->{geom}{$_} } qw(cylinders heads sectors)) . " (CHS)"; $hd->{primary_partitions} = @{$info->{primary}{normal}}; $hd->{extended_partitions} = @{$info->{extended}}; delete $hd->{extended_partitions} if $hd->{extended_partitions} eq '0'; |