mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-03-23 02:55:20 +00:00
Fix 'set but not used' ARM compiler warning
This commit is contained in:
parent
a855cb635d
commit
7ba0a886bd
|
@ -4151,6 +4151,7 @@ static int ssl_client_key_exchange_parse( mbedtls_ssl_context *ssl,
|
|||
if( ( ret = mbedtls_ecdh_read_public( &ssl->handshake->ecdh_ctx,
|
||||
p, end - p) ) != 0 )
|
||||
{
|
||||
((void) ret);
|
||||
MBEDTLS_SSL_DEBUG_RET( 1, "mbedtls_ecdh_read_public", ret );
|
||||
return( MBEDTLS_ERR_SSL_BAD_HS_CLIENT_KEY_EXCHANGE_RP );
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue