diff options
author | Olivier Blin <oblin@mandriva.com> | 2008-09-25 11:08:27 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2008-09-25 11:08:27 +0000 |
commit | 4c06980806a8d346bb9c288e383af6084d2ca65b (patch) | |
tree | 150afd4d0072ead736d5f99cfc9ee25c8de7d0f8 | |
parent | d18067101851057d4ab0131a843a388070cadaeb (diff) | |
download | drakiso-4c06980806a8d346bb9c288e383af6084d2ca65b.tar drakiso-4c06980806a8d346bb9c288e383af6084d2ca65b.tar.gz drakiso-4c06980806a8d346bb9c288e383af6084d2ca65b.tar.bz2 drakiso-4c06980806a8d346bb9c288e383af6084d2ca65b.tar.xz drakiso-4c06980806a8d346bb9c288e383af6084d2ca65b.zip |
remove unnecessary parentheses (thanks Pixel)
-rwxr-xr-x | draklive | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1313,7 +1313,7 @@ sub allocate_master { #- FIXME: use parted? require fs::type; - my $pt_type = sprintf('%x', (fs::type::fs_type2subpart($fs))->{pt_type}); + my $pt_type = sprintf('%x', fs::type::fs_type2subpart($fs)->{pt_type}); open(my $fdisk, "| fdisk -C $cylinders -S $sectors_per_track -H $heads $dest"); print $fdisk <<EOF; o |