diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2017-01-27 21:36:28 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2017-01-27 21:36:34 +0100 |
commit | d0bebb379a3fc92ae7d46c7a04e34cf2ba14e233 (patch) | |
tree | 0c33d17e45d97f2e74be5e41ab1932ca941aaecb | |
parent | 2b6151e333fb5d74038f90026307c4a1c8c0f3e7 (diff) | |
download | drakx-d0bebb379a3fc92ae7d46c7a04e34cf2ba14e233.tar drakx-d0bebb379a3fc92ae7d46c7a04e34cf2ba14e233.tar.gz drakx-d0bebb379a3fc92ae7d46c7a04e34cf2ba14e233.tar.bz2 drakx-d0bebb379a3fc92ae7d46c7a04e34cf2ba14e233.tar.xz drakx-d0bebb379a3fc92ae7d46c7a04e34cf2ba14e233.zip |
remove debug code
it was wrongly added in commit 7cd51d36c05a66555b07a7fa850b21686ded2e1a
-rwxr-xr-x | rescue/bin/lsparts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rescue/bin/lsparts b/rescue/bin/lsparts index 72f1c4cee..a1855a21e 100755 --- a/rescue/bin/lsparts +++ b/rescue/bin/lsparts @@ -40,7 +40,7 @@ foreach (fs::proc_partitions::read_raw()) { $_->{device} = $_->{dev}; local $::isStandalone = 1; # silent run_program if (my $type = fs::type::type_subpart_from_magic($_)) { - printf "$_->{dev}: %6s, fs %s (%s) [%s] (%s sectors)\n", formatXiB($_->{size} * 1024), $type->{fs_type}, fs::type::part2type_name($type), $type->{device_LABEL}, $_->{size}; + printf "$_->{dev}: %6s, fs %s (%s) [%s]\n", formatXiB($_->{size} * 1024), $type->{fs_type}, fs::type::part2type_name($type), $type->{device_LABEL}; } } } |