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 | cfadda92ca195da3ad68d721a58872a4f1ced696 (patch) | |
tree | c0748b5dcbade83af788c0abfa89c0383d6b779c /util/stream/zlib.cpp | |
parent | f70d9720e13aef3a935e3f405b0eac554529e76e (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 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 4dbef9839e2..60f4e9439f0 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"; } |