ssl_tls: add missing return brackets

This commit is contained in:
Andrzej Kurek 2019-01-15 03:25:18 -05:00
parent 70737ca827
commit 3317126819

View file

@ -559,7 +559,7 @@ static int tls_prf_generic( mbedtls_md_type_t md_type,
if( status != PSA_SUCCESS )
return( MBEDTLS_ERR_SSL_HW_ACCEL_FAILED );
return 0;
return( 0 );
}
#else /* MBEDTLS_USE_PSA_CRYPTO */