mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Remove a few dead stores
This commit is contained in:
committed by
Paul Bakker
parent
9e987edf9f
commit
7c59363a85
@ -258,7 +258,8 @@ int ecdh_calc_secret( ecdh_context *ctx, size_t *olen,
|
||||
*/
|
||||
int ecdh_self_test( int verbose )
|
||||
{
|
||||
return( verbose++ );
|
||||
((void) verbose );
|
||||
return( 0 );
|
||||
}
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user