mirror of https://git.tukaani.org/xz.git
liblzma: LZ decoder: Remove a useless unlikely().
This commit is contained in:
parent
f3872a5947
commit
9c252e3ed0
|
@ -187,7 +187,7 @@ dict_repeat(lzma_dict *dict, uint32_t distance, uint32_t *len)
|
|||
if (!dict->has_wrapped)
|
||||
dict->full = dict->pos - 2 * LZ_DICT_REPEAT_MAX;
|
||||
|
||||
return unlikely(*len != 0);
|
||||
return *len != 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue