Skip to content

Commit

Permalink
Use BROTLI_MAX_WINDOW_BITS again.
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmilk committed Dec 28, 2018
1 parent 810c216 commit 093cf20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C/zstdmt/brotli-mt_compress.c
Expand Up @@ -267,7 +267,7 @@ static void *pt_compress(void *arg)
uint8_t *obuf = (uint8_t*)wl->out.buf + 16;
wl->out.size -= 16;
rv = BrotliEncoderCompress(ctx->level,
BROTLI_LARGE_MAX_WINDOW_BITS,
BROTLI_MAX_WINDOW_BITS,
BROTLI_MODE_GENERIC, in.size,
ibuf, &wl->out.size, obuf);

Expand Down

0 comments on commit 093cf20

Please sign in to comment.