mirror of
https://git.tukaani.org/xz.git
synced 2024-04-04 12:36:23 +02:00
Fixed wrong type of flags_size in Subblock encoder.
This commit is contained in:
parent
ce64df7162
commit
7c1ad41eb6
1 changed files with 1 additions and 1 deletions
|
@ -98,7 +98,7 @@ struct lzma_coder_s {
|
||||||
bool got_input;
|
bool got_input;
|
||||||
|
|
||||||
uint8_t *flags;
|
uint8_t *flags;
|
||||||
size_t flags_size;
|
uint32_t flags_size;
|
||||||
|
|
||||||
lzma_next_coder subcoder;
|
lzma_next_coder subcoder;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue