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:
parent
84f9687cba
commit
c48b24fc06
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue