diff options
author | smalov <[email protected]> | 2022-02-10 16:47:36 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:47:36 +0300 |
commit | f70d9720e13aef3a935e3f405b0eac554529e76e (patch) | |
tree | 5519c392aebdb16153197de07e4774c0a2be261a /util/stream/zlib.cpp | |
parent | 7b659037613268d5eac4a1b6a7c5eff3cd36d4bf (diff) |
Restoring authorship annotation for <[email protected]>. Commit 1 of 2.
Diffstat (limited to 'util/stream/zlib.cpp')
-rw-r--r-- | util/stream/zlib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/stream/zlib.cpp b/util/stream/zlib.cpp index 60f4e9439f0..4dbef9839e2 100644 --- a/util/stream/zlib.cpp +++ b/util/stream/zlib.cpp @@ -204,7 +204,7 @@ public: inline TImpl(const TParams& p) : Stream_(p.Out) { - if (deflateInit2(Z(), Min<size_t>(9, p.CompressionLevel), Z_DEFLATED, opts[Type(p.Type)], 8, Z_DEFAULT_STRATEGY)) { + if (deflateInit2(Z(), Min<size_t>(9, p.CompressionLevel), Z_DEFLATED, opts[Type(p.Type)], 8, Z_DEFAULT_STRATEGY)) { ythrow TZLibCompressorError() << "can not init inflate engine"; } |