diff options
-rw-r--r-- | perl-install/install/steps_interactive.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/install/steps_interactive.pm b/perl-install/install/steps_interactive.pm index 134ae9b82..79e1f7b05 100644 --- a/perl-install/install/steps_interactive.pm +++ b/perl-install/install/steps_interactive.pm @@ -135,9 +135,9 @@ sub selectPartitionTable { if ($size > 2 * 1024 * 1024 * 1024) { # if ($size > 248) { push @bigdrives, $hd; - log::l("selectPartitionTable: $hd->{device} is a big drive ($size MB)"); + log::l("selectPartitionTable: $hd->{device} is a big drive ($size)"); } else { - log::l("selectPartitionTable: $hd->{device} not a big drive ($size MB)"); + log::l("selectPartitionTable: $hd->{device} not a big drive ($size)"); } } my $howmany = @bigdrives; |