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

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

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,