Skip to content

Commit 56f4b4c

Browse files
committed
Mbed TLS: Fix compile error with ECP alternative
Fix un-paired parenthesis when MBEDTLS_ECP_RANDOMIZE_MXZ_ALT is enabled
1 parent ddacecc commit 56f4b4c

File tree

1 file changed

+1
-1
lines changed
  • connectivity/mbedtls/source

1 file changed

+1
-1
lines changed

connectivity/mbedtls/source/ecp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2446,7 +2446,7 @@ static int ecp_randomize_mxz( const mbedtls_ecp_group *grp, mbedtls_ecp_point *P
24462446

24472447
#if defined(MBEDTLS_ECP_RANDOMIZE_MXZ_ALT)
24482448
if( mbedtls_internal_ecp_grp_capable( grp ) )
2449-
return( mbedtls_internal_ecp_randomize_mxz( grp, P, f_rng, p_rng );
2449+
return( mbedtls_internal_ecp_randomize_mxz( grp, P, f_rng, p_rng ) );
24502450
#endif /* MBEDTLS_ECP_RANDOMIZE_MXZ_ALT */
24512451

24522452
p_size = ( grp->pbits + 7 ) / 8;

0 commit comments

Comments
 (0)