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
1 changed files with 1 additions and 1 deletions

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