diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-06-25 13:03:24 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2020-06-25 13:03:24 +0000 |
commit | ec7bba0793d70d248c1fb011cff09cf25631da55 (patch) | |
tree | 6ee6952d8fc7dc2f547f81115474ab6a2544959a /src/common/util.cpp | |
parent | Merge pull request #6656 (diff) | |
download | monero-ec7bba0793d70d248c1fb011cff09cf25631da55.tar.xz |
util: fix kilo prefix typo (K instead of k)
Diffstat (limited to 'src/common/util.cpp')
-rw-r--r-- | src/common/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/util.cpp b/src/common/util.cpp index f1140d1d5..0a2f9da3a 100644 --- a/src/common/util.cpp +++ b/src/common/util.cpp @@ -1116,7 +1116,7 @@ std::string get_nix_version_display_string() static constexpr const byte_map sizes[] = { {"%.0f B", 1024}, - {"%.2f KB", 1024 * 1024}, + {"%.2f kB", 1024 * 1024}, {"%.2f MB", std::uint64_t(1024) * 1024 * 1024}, {"%.2f GB", std::uint64_t(1024) * 1024 * 1024 * 1024}, {"%.2f TB", std::uint64_t(1024) * 1024 * 1024 * 1024 * 1024} |