mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-12 08:05:31 +00:00
Replace 0 by MBEDTLS_ECP_DP_NONE to avoid IAR compiler complains
This commit is contained in:
parent
77233ec411
commit
56a74cdcc9
|
@ -836,7 +836,7 @@ int mbedtls_ecp_group_load( mbedtls_ecp_group *grp, mbedtls_ecp_group_id id )
|
|||
#endif /* MBEDTLS_ECP_DP_CURVE448_ENABLED */
|
||||
|
||||
default:
|
||||
grp->id = 0;
|
||||
grp->id = MBEDTLS_ECP_DP_NONE;
|
||||
return( MBEDTLS_ERR_ECP_FEATURE_UNAVAILABLE );
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue