diff --git a/inxi b/inxi index 0a57b1b..0979602 100755 --- a/inxi +++ b/inxi @@ -14110,7 +14110,7 @@ sub get_memory_data_linux { my $percent = ($used && $total) ? sprintf("%.1f", ($used/$total)*100) : ''; if ($type eq 'string'){ $percent = " ($percent%)" if $percent; - $memory = sprintf("%.1f/%.1f MB", $used/1024, $total/1024) . $percent; + $memory = sprintf("%.1f/%.1f MiB", $used/1024, $total/1024) . $percent; } else { $memory = "$total:$used:$percent";