aboutsummaryrefslogtreecommitdiffstats
path: root/util/stream/zlib.cpp
diff options
context:
space:
mode:
authorprime <prime@yandex-team.ru>2022-02-10 16:46:01 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:01 +0300
commite34f3f0e381020a427f44fbd50463d9a04089db3 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /util/stream/zlib.cpp
parent3695a7cd42b74a4987d8d5a8f2e2443556998943 (diff)
downloadydb-e34f3f0e381020a427f44fbd50463d9a04089db3.tar.gz
Restoring authorship annotation for <prime@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/stream/zlib.cpp')
-rw-r--r--util/stream/zlib.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/util/stream/zlib.cpp b/util/stream/zlib.cpp
index 605143aa0e..60f4e9439f 100644
--- a/util/stream/zlib.cpp
+++ b/util/stream/zlib.cpp
@@ -233,10 +233,10 @@ public:
const Bytef* b = (const Bytef*)buf;
const Bytef* e = b + size;
- Y_DEFER {
- Z()->next_in = nullptr;
- Z()->avail_in = 0;
- };
+ Y_DEFER {
+ Z()->next_in = nullptr;
+ Z()->avail_in = 0;
+ };
do {
b = WritePart(b, e);
} while (b < e);