diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2023-01-12 03:51:07 +0200 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2023-01-12 03:56:24 +0200 |
commit | 49245bb31e215ad455a1ab85e4ed6783152dc522 (patch) | |
tree | b416540b384b2113709431599e93d80a38111757 /tests/test_check.c | |
parent | liblzma: Silence warnings from clang -Wconditional-uninitialized. (diff) | |
download | xz-49245bb31e215ad455a1ab85e4ed6783152dc522.tar.xz |
Tests: Silence warnings from -Wsign-conversion.
Note that assigning an unsigned int to lzma_check doesn't warn
on GNU/Linux x86-64 since the enum type is unsigned on that
platform. The enum can be signed on some other platform though
so it's best to use enumeration type lzma_check in these situations.
Diffstat (limited to '')
-rw-r--r-- | tests/test_check.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_check.c b/tests/test_check.c index bc52f403..1d5b3a10 100644 --- a/tests/test_check.c +++ b/tests/test_check.c @@ -133,7 +133,7 @@ test_lzma_crc64(void) static void test_lzma_supported_checks(void) { - static const int expected_check_ids[] = { + static const lzma_check expected_check_ids[] = { LZMA_CHECK_NONE, #ifdef HAVE_CHECK_CRC32 LZMA_CHECK_CRC32, @@ -146,7 +146,7 @@ test_lzma_supported_checks(void) #endif }; - for (int i = 0; i <= LZMA_CHECK_ID_MAX + 1; i++) { + for (lzma_check i = 0; i <= LZMA_CHECK_ID_MAX + 1; i++) { bool matched = false; for (unsigned int j = 0; j < ARRAY_SIZE(expected_check_ids); j++) { @@ -173,7 +173,7 @@ test_lzma_check_size(void) 32, 32, 32, 64, 64, 64 }; - for (unsigned int i = 0; i < ARRAY_SIZE(expected_check_sizes); i++) + for (lzma_check i = 0; i < ARRAY_SIZE(expected_check_sizes); i++) assert_uint_eq(expected_check_sizes[i], lzma_check_size(i)); assert_uint_eq(lzma_check_size(LZMA_CHECK_ID_MAX + 1), UINT32_MAX); |