commit | f57a352a9d4eeda41365ad09269291ea198a9e4c | [log] [tgz] |
---|---|---|
author | Thomas Daubney <thomas.daubney@arm.com> | Tue Jun 25 15:23:57 2024 +0100 |
committer | Thomas Daubney <thomas.daubney@arm.com> | Tue Jun 25 15:23:57 2024 +0100 |
tree | c647986d2628f96ae118cffab5ae78960e051bc1 | |
parent | 4e5d183d784a7f4031abd3ecdf6b053372aed3cd [diff] [blame] |
Remove superfluous brackets Signed-off-by: Thomas Daubney <thomas.daubney@arm.com>
diff --git a/library/aes.c b/library/aes.c index ae883b2..72e2c57 100644 --- a/library/aes.c +++ b/library/aes.c
@@ -508,7 +508,7 @@ * Note that the offset is in units of elements of buf, i.e. 32-bit words, * i.e. an offset of 1 means 4 bytes and so on. */ -#if (defined(MBEDTLS_AESNI_C) && MBEDTLS_AESNI_HAVE_CODE == 2) +#if defined(MBEDTLS_AESNI_C) && MBEDTLS_AESNI_HAVE_CODE == 2 #define MAY_NEED_TO_ALIGN #endif