mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
util: fix kilo prefix typo (K instead of k)
This commit is contained in:
parent
93257997bd
commit
ec7bba0793
@ -1116,7 +1116,7 @@ std::string get_nix_version_display_string()
|
|||||||
static constexpr const byte_map sizes[] =
|
static constexpr const byte_map sizes[] =
|
||||||
{
|
{
|
||||||
{"%.0f B", 1024},
|
{"%.0f B", 1024},
|
||||||
{"%.2f KB", 1024 * 1024},
|
{"%.2f kB", 1024 * 1024},
|
||||||
{"%.2f MB", std::uint64_t(1024) * 1024 * 1024},
|
{"%.2f MB", std::uint64_t(1024) * 1024 * 1024},
|
||||||
{"%.2f GB", std::uint64_t(1024) * 1024 * 1024 * 1024},
|
{"%.2f GB", std::uint64_t(1024) * 1024 * 1024 * 1024},
|
||||||
{"%.2f TB", std::uint64_t(1024) * 1024 * 1024 * 1024 * 1024}
|
{"%.2f TB", std::uint64_t(1024) * 1024 * 1024 * 1024 * 1024}
|
||||||
|
Loading…
Reference in New Issue
Block a user