| Index: src/liblzma/lzma/lzma2_encoder.c
|
| ===================================================================
|
| --- src/liblzma/lzma/lzma2_encoder.c (revision 50504)
|
| +++ src/liblzma/lzma/lzma2_encoder.c (working copy)
|
| @@ -374,7 +374,7 @@
|
| const lzma_options_lzma *const opt = options;
|
| uint32_t d = my_max(opt->dict_size, LZMA_DICT_SIZE_MIN);
|
|
|
| - // Round up to to the next 2^n - 1 or 2^n + 2^(n - 1) - 1 depending
|
| + // Round up to the next 2^n - 1 or 2^n + 2^(n - 1) - 1 depending
|
| // on which one is the next:
|
| --d;
|
| d |= d >> 2;
|
|
|