xz: parse_block_list: Edit integer type casting

This commit is contained in:
Lasse Collin 2024-05-12 15:08:10 +03:00
parent 87011e40c1
commit e89293a0ba
1 changed files with 2 additions and 3 deletions

View File

@ -126,9 +126,8 @@ parse_block_list(const char *str_const)
"filter chain number '%c:'"),
str[0]);
int filter_num = str[0] - '0';
opt_block_list[i].filters_index =
(uint32_t)filter_num;
const uint32_t filter_num = (uint32_t)(str[0] - '0');
opt_block_list[i].filters_index = filter_num;
str += 2;
}