Tests: test_index_hash: Use INDEX_INDICATOR constant instead of 0.

This commit is contained in:
Lasse Collin 2023-01-06 17:17:37 +02:00
parent 84f9687cba
commit c48b24fc06
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ generate_index(uint8_t *index, const lzma_vli *unpadded_sizes,
size_t in_pos = 0;
size_t out_pos = 0;
// First set index indicator
index[out_pos++] = 0;
index[out_pos++] = INDEX_INDICATOR;
// Next write out Number of Records
assert_lzma_ret(lzma_vli_encode(block_count, &in_pos, index,