diff options
Diffstat (limited to 'src/liblzma/simple/x86.c')
-rw-r--r-- | src/liblzma/simple/x86.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/liblzma/simple/x86.c b/src/liblzma/simple/x86.c index 0e78909c..0e682922 100644 --- a/src/liblzma/simple/x86.c +++ b/src/liblzma/simple/x86.c @@ -128,7 +128,8 @@ x86_coder_init(lzma_next_coder *next, const lzma_allocator *allocator, const lzma_filter_info *filters, bool is_encoder) { const lzma_ret ret = lzma_simple_coder_init(next, allocator, filters, - &x86_code, sizeof(lzma_simple_x86), 5, 1, is_encoder); + &x86_code, sizeof(lzma_simple_x86), 5, 1, is_encoder, + true); if (ret == LZMA_OK) { lzma_simple_coder *coder = next->coder; |