1
0
Fork 0
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:
Lasse Collin 2007-12-11 11:18:58 +02:00
parent ce64df7162
commit 7c1ad41eb6

View file

@ -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;