From 4a5ed0231d077ca028c28e5b14018eb611b90888 Mon Sep 17 00:00:00 2001 From: Steven Cooreman Date: Thu, 11 Mar 2021 13:18:29 +0100 Subject: [PATCH] Add missing parenthesis Signed-off-by: Steven Cooreman --- library/ecp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/ecp.c b/library/ecp.c index fe41b4128..2168981af 100644 --- a/library/ecp.c +++ b/library/ecp.c @@ -2505,7 +2505,7 @@ static int ecp_randomize_mxz( const mbedtls_ecp_group *grp, mbedtls_ecp_point *P #if defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT) if( mbedtls_internal_ecp_grp_capable( grp ) ) - return( mbedtls_internal_ecp_randomize_mxz( grp, P, f_rng, p_rng ); + return( mbedtls_internal_ecp_randomize_mxz( grp, P, f_rng, p_rng ) ); #endif /* MBEDTLS_ECP_RANDOMIZE_MXZ_ALT */ p_size = ( grp->pbits + 7 ) / 8;