From 478c6cb88d770319b381abb67cbe9bd6e6a250ba Mon Sep 17 00:00:00 2001 From: DmitriyMusatkin Date: Tue, 3 Sep 2024 10:24:04 -0700 Subject: [PATCH] lets try again --- tests/crc64_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/crc64_test.c b/tests/crc64_test.c index bd6dd4a..d7b6b18 100644 --- a/tests/crc64_test.c +++ b/tests/crc64_test.c @@ -100,8 +100,8 @@ static int s_test_known_crc64nvme(struct aws_allocator *allocator, const char *f // Compute the expected CRC one byte at a time using the reference function expected = crc64nvme_reference(&test_buf.buffer[off + i], 1, expected); // Recompute the full CRC of the buffer at each offset and length and compare against expected value - res |= - s_test_known_crc(func_name, func, "test_buffer", &test_buf.buffer[off], len, expected, RESIDUE_CRC64NVME); + res |= s_test_known_crc( + func_name, func, "test_buffer", &test_buf.buffer[off], len, expected, RESIDUE_CRC64NVME); } aws_byte_buf_reset(&test_buf, false); }