diff options
author | 2023-07-31 09:47:25 +0100 | |
---|---|---|
committer | 2023-07-31 09:47:25 +0100 | |
commit | 9ed9d96597f7f2ecd4e51e5ea1449dd6c08eeeeb (patch) | |
tree | f4acb280b255e490ba8be77e73c9795d68c11754 /vendor/github.com/klauspost/compress/flate/huffman_bit_writer.go | |
parent | [feature] Implement markers API (#1989) (diff) | |
download | gotosocial-9ed9d96597f7f2ecd4e51e5ea1449dd6c08eeeeb.tar.xz |
[chore]: Bump github.com/minio/minio-go/v7 from 7.0.60 to 7.0.61 (#2041)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to 'vendor/github.com/klauspost/compress/flate/huffman_bit_writer.go')
-rw-r--r-- | vendor/github.com/klauspost/compress/flate/huffman_bit_writer.go | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/vendor/github.com/klauspost/compress/flate/huffman_bit_writer.go b/vendor/github.com/klauspost/compress/flate/huffman_bit_writer.go index 89a5dd89f..f70594c34 100644 --- a/vendor/github.com/klauspost/compress/flate/huffman_bit_writer.go +++ b/vendor/github.com/klauspost/compress/flate/huffman_bit_writer.go @@ -34,11 +34,6 @@ const ( // Should preferably be a multiple of 6, since // we accumulate 6 bytes between writes to the buffer. bufferFlushSize = 246 - - // bufferSize is the actual output byte buffer size. - // It must have additional headroom for a flush - // which can contain up to 8 bytes. - bufferSize = bufferFlushSize + 8 ) // Minimum length code that emits bits. |