From c0f8d6782f29e219fd496dd23f6a033270509d5c Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Thu, 12 Jan 2023 03:03:55 +0200 Subject: Tests: test_lzip_decoder: Silence warnings from -Wsign-conversion. --- tests/test_lzip_decoder.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'tests') diff --git a/tests/test_lzip_decoder.c b/tests/test_lzip_decoder.c index 306de747..93a7aa25 100644 --- a/tests/test_lzip_decoder.c +++ b/tests/test_lzip_decoder.c @@ -56,8 +56,8 @@ basic_lzip_decode(const char *src, const uint32_t expected_crc) { ret = lzma_code(&strm, LZMA_RUN); if (strm.avail_out == 0) { checksum = lzma_crc32(output_buffer, - strm.next_out - output_buffer, - checksum); + (size_t)(strm.next_out - output_buffer), + checksum); // No need to free output_buffer because it will // automatically be freed at the end of the test by // tuktest. @@ -70,7 +70,8 @@ basic_lzip_decode(const char *src, const uint32_t expected_crc) { assert_lzma_ret(ret, LZMA_STREAM_END); assert_uint_eq(strm.total_in, file_size); - checksum = lzma_crc32(output_buffer, strm.next_out - output_buffer, + checksum = lzma_crc32(output_buffer, + (size_t)(strm.next_out - output_buffer), checksum); assert_uint_eq(checksum, expected_crc); @@ -133,8 +134,8 @@ trailing_helper(const char *src, const uint32_t expected_data_checksum, ret = lzma_code(&strm, LZMA_RUN); if (strm.avail_out == 0) { checksum = lzma_crc32(output_buffer, - strm.next_out - output_buffer, - checksum); + (size_t)(strm.next_out - output_buffer), + checksum); // No need to free output_buffer because it will // automatically be freed at the end of the test by // tuktest. @@ -148,7 +149,7 @@ trailing_helper(const char *src, const uint32_t expected_data_checksum, assert_uint(strm.total_in, <, file_size); checksum = lzma_crc32(output_buffer, - strm.next_out - output_buffer, + (size_t)(strm.next_out - output_buffer), checksum); assert_uint_eq(checksum, expected_data_checksum); -- cgit v1.2.3