diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2019-06-25 23:15:21 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2019-06-25 23:15:21 +0300 |
commit | 8ce679125dbd0e2058d8f886e738d7f19a45cab5 (patch) | |
tree | 2f96c039dca12ebb8db5b723ee33573b0296a7bc /src/liblzma/lz/lz_encoder_mf.c | |
parent | configure.ac: Fix a typo in a comment. (diff) | |
download | xz-8ce679125dbd0e2058d8f886e738d7f19a45cab5.tar.xz |
liblzma: Fix a buggy comment.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/lz/lz_encoder_mf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblzma/lz/lz_encoder_mf.c b/src/liblzma/lz/lz_encoder_mf.c index 78520779..d03657a7 100644 --- a/src/liblzma/lz/lz_encoder_mf.c +++ b/src/liblzma/lz/lz_encoder_mf.c @@ -113,7 +113,7 @@ normalize(lzma_mf *mf) // may be match finders that use larger resolution than one byte. const uint32_t subvalue = (MUST_NORMALIZE_POS - mf->cyclic_size); - // & (~(UINT32_C(1) << 10) - 1); + // & ~((UINT32_C(1) << 10) - 1); for (uint32_t i = 0; i < mf->hash_count; ++i) { // If the distance is greater than the dictionary size, |