mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:57:45 +00:00
ifconfig: Fix capitalization of "kiB"
This commit is contained in:
parent
d5b2233f2e
commit
19b329ee96
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ static String si_bytes(unsigned bytes)
|
|||
if (bytes >= MB)
|
||||
return String::format("%fMiB", (double)bytes / (double)MB);
|
||||
if (bytes >= KB)
|
||||
return String::format("%fKiB", (double)bytes / (double)KB);
|
||||
return String::format("%fkiB", (double)bytes / (double)KB);
|
||||
return String::format("%dB", bytes);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue