1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

liblzma: LZ decoder: Remove a useless unlikely().

This commit is contained in:
Lasse Collin 2024-02-12 17:09:10 +02:00
parent f3872a5947
commit 9c252e3ed0

View file

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