Skip to content

Commit a6610e6

Browse files
authored
Merge pull request ARMmbed#15261 from OpenNuvoton/nuvoton_ecp_alt_rand_mxz
Mbed TLS: Fix compile error with ECP alternative
2 parents ddacecc + 56f4b4c commit a6610e6

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)