From b2783f66b505cc62634ea6a5f92114fb5d90ffab Mon Sep 17 00:00:00 2001 From: Jerry Yu Date: Mon, 13 Feb 2023 18:03:25 +0800 Subject: [PATCH] fix typo issue The error message is wrong Signed-off-by: Jerry Yu --- library/aesce.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/aesce.c b/library/aesce.c index e6b675a3d..18322a62a 100644 --- a/library/aesce.c +++ b/library/aesce.c @@ -28,14 +28,14 @@ #if defined(__clang__) # if __clang_major__ < 4 -# error "A more recent Clang is required for MBEDTLS_AES_C" +# error "A more recent Clang is required for MBEDTLS_AESCE_C" # endif #elif defined(__GNUC__) # if __GNUC__ < 6 -# error "A more recent GCC is required for MBEDTLS_AES_C" +# error "A more recent GCC is required for MBEDTLS_AESCE_C" # endif #else -# error "Only GCC and Clang supported for MBEDTLS_AES_C" +# error "Only GCC and Clang supported for MBEDTLS_AESCE_C" #endif #if !defined(__ARM_FEATURE_CRYPTO)