mirror of
https://git.tukaani.org/xz.git
synced 2025-02-17 14:08:12 +00:00
liblzma: Make parameter names in function definition match declaration.
lzma_raw_encoder() and lzma_raw_encoder_init() used "options" as the parameter name instead of "filters" (used by the declaration). "filters" is more clear since the parameter represents the list of filters passed to the raw encoder, each of which contains filter options. (cherry picked from commit 27ab54af848ec4adc9c17362f6c64a42a7003df5)
This commit is contained in:
parent
94c8503486
commit
176ae9073c
@ -200,17 +200,17 @@ lzma_filters_update(lzma_stream *strm, const lzma_filter *filters)
|
|||||||
|
|
||||||
extern lzma_ret
|
extern lzma_ret
|
||||||
lzma_raw_encoder_init(lzma_next_coder *next, const lzma_allocator *allocator,
|
lzma_raw_encoder_init(lzma_next_coder *next, const lzma_allocator *allocator,
|
||||||
const lzma_filter *options)
|
const lzma_filter *filters)
|
||||||
{
|
{
|
||||||
return lzma_raw_coder_init(next, allocator,
|
return lzma_raw_coder_init(next, allocator,
|
||||||
options, (lzma_filter_find)(&encoder_find), true);
|
filters, (lzma_filter_find)(&encoder_find), true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
extern LZMA_API(lzma_ret)
|
extern LZMA_API(lzma_ret)
|
||||||
lzma_raw_encoder(lzma_stream *strm, const lzma_filter *options)
|
lzma_raw_encoder(lzma_stream *strm, const lzma_filter *filters)
|
||||||
{
|
{
|
||||||
lzma_next_strm_init(lzma_raw_coder_init, strm, options,
|
lzma_next_strm_init(lzma_raw_coder_init, strm, filters,
|
||||||
(lzma_filter_find)(&encoder_find), true);
|
(lzma_filter_find)(&encoder_find), true);
|
||||||
|
|
||||||
strm->internal->supported_actions[LZMA_RUN] = true;
|
strm->internal->supported_actions[LZMA_RUN] = true;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user