diff options
author | alexvru <alexvru@ydb.tech> | 2023-05-15 15:56:59 +0300 |
---|---|---|
committer | alexvru <alexvru@ydb.tech> | 2023-05-15 15:56:59 +0300 |
commit | 62a0e00e484af180e370398913d8542ad7e43733 (patch) | |
tree | 63ba8de71d792935ea41980f60d21d557842d5bc /library/cpp | |
parent | c4c3c0bdf21defb26ef61e48455e78ea27161792 (diff) | |
download | ydb-62a0e00e484af180e370398913d8542ad7e43733.tar.gz |
Fix bug
Diffstat (limited to 'library/cpp')
-rw-r--r-- | library/cpp/actors/interconnect/interconnect_tcp_input_session.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/actors/interconnect/interconnect_tcp_input_session.cpp b/library/cpp/actors/interconnect/interconnect_tcp_input_session.cpp index 94043c7ef18..bb7e069883b 100644 --- a/library/cpp/actors/interconnect/interconnect_tcp_input_session.cpp +++ b/library/cpp/actors/interconnect/interconnect_tcp_input_session.cpp @@ -770,7 +770,7 @@ namespace NActors { w = (w & mask) >> 1; } } - UsageHisto[word] += 1 << offset; + UsageHisto[word] += ui64(1) << offset; while (CurrentBuffers > 1) { const size_t index = CurrentBuffers - 1; |