mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-23 03:11:04 +00:00
ssl_tls: add missing return brackets
This commit is contained in:
parent
70737ca827
commit
3317126819
|
@ -559,7 +559,7 @@ static int tls_prf_generic( mbedtls_md_type_t md_type,
|
||||||
if( status != PSA_SUCCESS )
|
if( status != PSA_SUCCESS )
|
||||||
return( MBEDTLS_ERR_SSL_HW_ACCEL_FAILED );
|
return( MBEDTLS_ERR_SSL_HW_ACCEL_FAILED );
|
||||||
|
|
||||||
return 0;
|
return( 0 );
|
||||||
}
|
}
|
||||||
|
|
||||||
#else /* MBEDTLS_USE_PSA_CRYPTO */
|
#else /* MBEDTLS_USE_PSA_CRYPTO */
|
||||||
|
|
Loading…
Reference in a new issue