1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-28 00:21:48 +03:00

Remove a few dead stores

This commit is contained in:
Manuel Pégourié-Gonnard
2014-01-20 10:27:13 +01:00
committed by Paul Bakker
parent 9e987edf9f
commit 7c59363a85
7 changed files with 6 additions and 18 deletions

View File

@ -349,7 +349,8 @@ void ecdsa_free( ecdsa_context *ctx )
*/
int ecdsa_self_test( int verbose )
{
return( verbose++ );
((void) verbose );
return( 0 );
}
#endif