diff options
author | sobols <sobols@yandex-team.ru> | 2022-02-10 16:47:08 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:47:08 +0300 |
commit | 03335cb18337a0ef51966452a66a69b01abea218 (patch) | |
tree | b83306b6e37edeea782e9eed673d89286c4fef35 /contrib/libs/zlib/deflate.c | |
parent | 09961b69c61f471ddd594e0fd877df62a8021562 (diff) | |
download | ydb-03335cb18337a0ef51966452a66a69b01abea218.tar.gz |
Restoring authorship annotation for <sobols@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'contrib/libs/zlib/deflate.c')
-rw-r--r-- | contrib/libs/zlib/deflate.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/libs/zlib/deflate.c b/contrib/libs/zlib/deflate.c index 7f7df55c51c..7318b1e2fbc 100644 --- a/contrib/libs/zlib/deflate.c +++ b/contrib/libs/zlib/deflate.c @@ -153,7 +153,7 @@ local const config configuration_table[10] = { */ /* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */ -#define RANK(f) (((f) * 2) - ((f) > 4 ? 9 : 0)) +#define RANK(f) (((f) * 2) - ((f) > 4 ? 9 : 0)) /* =========================================================================== * Update a hash value with the given input byte |