summaryrefslogtreecommitdiffstats
path: root/library/cpp/monlib/counters/counters.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/monlib/counters/counters.cpp')
-rw-r--r--library/cpp/monlib/counters/counters.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/monlib/counters/counters.cpp b/library/cpp/monlib/counters/counters.cpp
index 50dca4c577a..726b8b99444 100644
--- a/library/cpp/monlib/counters/counters.cpp
+++ b/library/cpp/monlib/counters/counters.cpp
@@ -3,7 +3,7 @@
namespace NMonitoring {
char* PrettyNumShort(i64 val, char* buf, size_t size) {
- static const char shorts[] = {' ', 'K', 'M', 'G', 'T', 'P', 'E'};
+ static const char shorts[] = {' ', 'K', 'M', 'G', 'T', 'P', 'E'};
unsigned i = 0;
i64 major = val;
i64 minor = 0;