From d76aeff750f0f705e393989a574e7b6d66ade64a Mon Sep 17 00:00:00 2001 From: Ben Taylor Date: Tue, 17 Mar 2026 08:30:48 +0000 Subject: [PATCH] Remove surplus parentheses Signed-off-by: Ben Taylor This is a manual backport, not a direct cherry-pick, because the 3.6 PAKE macros retain a direct PSA_ALG_JPAKE comparison where the source branch adjusted a PSA_ALG_IS_JPAKE call. (cherry picked from commit 733ed07f29144ee9b99165e36eaf9b9b69317834) --- library/ecp_curves.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ecp_curves.c b/library/ecp_curves.c index 20581f1f8b..3c38f3a305 100644 --- a/library/ecp_curves.c +++ b/library/ecp_curves.c @@ -5019,7 +5019,7 @@ int mbedtls_ecp_mod_p192_raw(mbedtls_mpi_uint *Np, size_t Nn) #else /* 64 bit */ -#define MAX32 ((X_limbs) * 2) +#define MAX32 (X_limbs * 2) #define A(j) \ (j) % 2 ? \ (uint32_t) (X[(j) / 2] >> 32) : \