From 72abd8a9c31eb0a2404c9ccb8243e4ea3c0a06e3 Mon Sep 17 00:00:00 2001 From: Max Fillinger Date: Sun, 28 Nov 2021 14:02:36 +0100 Subject: [PATCH] Fix type for iv size and block size in tests Signed-off-by: Max Fillinger --- tests/suites/test_suite_cipher.function | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/suites/test_suite_cipher.function b/tests/suites/test_suite_cipher.function index 20020c241e..2efc434dc4 100644 --- a/tests/suites/test_suite_cipher.function +++ b/tests/suites/test_suite_cipher.function @@ -18,8 +18,7 @@ static int check_cipher_info( mbedtls_cipher_type_t type, const mbedtls_cipher_info_t *info ) { - size_t key_bitlen; - int block_size, iv_size; + size_t key_bitlen, block_size, iv_size; TEST_ASSERT( info != NULL ); TEST_EQUAL( type, mbedtls_cipher_info_get_type( info ) );