From ac7df142e8a251146fd7f6eb10add7eadfaa39d2 Mon Sep 17 00:00:00 2001 From: Valerio Setti Date: Wed, 13 Dec 2023 17:40:21 +0100 Subject: [PATCH] test_suite_block_cipher: fix unused variable when !MBEDTLS_BLOCK_CIPHER_SOME_PSA Signed-off-by: Valerio Setti --- tests/suites/test_suite_block_cipher.function | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/suites/test_suite_block_cipher.function b/tests/suites/test_suite_block_cipher.function index 2b166ba50a..3350b0f26b 100644 --- a/tests/suites/test_suite_block_cipher.function +++ b/tests/suites/test_suite_block_cipher.function @@ -97,6 +97,7 @@ exit: void block_cipher_psa_dynamic_dispatch(int cipher_type, int pre_psa_ret, int post_psa_engine) { mbedtls_block_cipher_context_t ctx; + (void) post_psa_engine; /* Intentionally no PSA init here! (Will be done later.) */