diff options
author | igorsolovyev <[email protected]> | 2022-02-10 16:48:03 +0300 |
---|---|---|
committer | Daniil Cherednik <[email protected]> | 2022-02-10 16:48:03 +0300 |
commit | 02eacb2e0795d01f1d266d68904068b3789750f5 (patch) | |
tree | b222e5ac2e2e98872661c51ccceee5da0d291e13 /library/cpp/codecs/zstd_dict_codec.cpp | |
parent | 93dc653cf53bf7a9319b52b85a7c02edfd95463d (diff) |
Restoring authorship annotation for <[email protected]>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/codecs/zstd_dict_codec.cpp')
-rw-r--r-- | library/cpp/codecs/zstd_dict_codec.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/codecs/zstd_dict_codec.cpp b/library/cpp/codecs/zstd_dict_codec.cpp index 5729d1de3f4..c42a2879e6c 100644 --- a/library/cpp/codecs/zstd_dict_codec.cpp +++ b/library/cpp/codecs/zstd_dict_codec.cpp @@ -159,10 +159,10 @@ namespace NCodecs { lens.push_back(r.size()); } - ZDICT_legacy_params_t params; + ZDICT_legacy_params_t params; memset(¶ms, 0, sizeof(params)); - params.zParams.compressionLevel = 1; - params.zParams.notificationLevel = 1; + params.zParams.compressionLevel = 1; + params.zParams.notificationLevel = 1; Dict.Resize(Max<size_t>(1 << 20, data.Size() + 16 * lens.size())); if (!lens) { |