mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 06: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)
|
if (bytes >= MB)
|
||||||
return String::format("%fMiB", (double)bytes / (double)MB);
|
return String::format("%fMiB", (double)bytes / (double)MB);
|
||||||
if (bytes >= KB)
|
if (bytes >= KB)
|
||||||
return String::format("%fKiB", (double)bytes / (double)KB);
|
return String::format("%fkiB", (double)bytes / (double)KB);
|
||||||
return String::format("%dB", bytes);
|
return String::format("%dB", bytes);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue