diff options
author | liblzma upstream <xz-devel@tukaani.org> | 2018-04-29 16:00:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-08-06 14:24:54 (GMT) |
commit | 352b8fa70d18ff1664cd8b22f42cf980a976ae4d (patch) | |
tree | 4f1267f96f542178e35ae60f0f27ef19a2b341ac /liblzma/lzma/lzma2_decoder.h | |
parent | 897b790d57f9c114adf1e0374b4a004ba6a8ec99 (diff) | |
download | CMake-352b8fa70d18ff1664cd8b22f42cf980a976ae4d.zip CMake-352b8fa70d18ff1664cd8b22f42cf980a976ae4d.tar.gz CMake-352b8fa70d18ff1664cd8b22f42cf980a976ae4d.tar.bz2 |
liblzma 2018-04-29 (b5be61cc)
Code extracted from:
https://git.tukaani.org/xz.git
at commit b5be61cc06088bb07f488f9baf7d447ff47b37c1 (v5.2.4).
Diffstat (limited to 'liblzma/lzma/lzma2_decoder.h')
-rw-r--r-- | liblzma/lzma/lzma2_decoder.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/liblzma/lzma/lzma2_decoder.h b/liblzma/lzma/lzma2_decoder.h index fac4ac4..ef2dcbf 100644 --- a/liblzma/lzma/lzma2_decoder.h +++ b/liblzma/lzma/lzma2_decoder.h @@ -17,12 +17,13 @@ #include "common.h" extern lzma_ret lzma_lzma2_decoder_init(lzma_next_coder *next, - lzma_allocator *allocator, const lzma_filter_info *filters); + const lzma_allocator *allocator, + const lzma_filter_info *filters); extern uint64_t lzma_lzma2_decoder_memusage(const void *options); extern lzma_ret lzma_lzma2_props_decode( - void **options, lzma_allocator *allocator, + void **options, const lzma_allocator *allocator, const uint8_t *props, size_t props_size); #endif |