diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2007-12-09 11:03:28 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2007-12-09 11:03:28 +0200 |
commit | 2bf36d22d2c24ac3f488e63b35564fa2f6dab8d1 (patch) | |
tree | 61aac614d0c9291177407eb81e5086c18f349931 /tests/test_index.c | |
parent | Imported to git. (diff) | |
download | xz-2bf36d22d2c24ac3f488e63b35564fa2f6dab8d1.tar.xz |
Fixed the tests to build with -Werror.
Diffstat (limited to '')
-rw-r--r-- | tests/test_index.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/test_index.c b/tests/test_index.c index 399963d3..2c006045 100644 --- a/tests/test_index.c +++ b/tests/test_index.c @@ -21,21 +21,21 @@ int -main() +main(void) { - lzma_index index[3] = { - { 22, 33, index + 1 }, - { 44, 55, index + 2 }, + lzma_index my_index[3] = { + { 22, 33, my_index + 1 }, + { 44, 55, my_index + 2 }, { 66, 77, NULL }, }; - lzma_index *i = lzma_index_dup(index, NULL); + lzma_index *i = lzma_index_dup(my_index, NULL); expect(i != NULL); - expect(lzma_index_is_equal(index, i)); + expect(lzma_index_is_equal(my_index, i)); i->next->next->uncompressed_size = 99; - expect(!lzma_index_is_equal(index, i)); + expect(!lzma_index_is_equal(my_index, i)); lzma_index_free(i, NULL); |