Remove printf when RSA selftest is skipped

This commit is contained in:
Paul Bakker 2013-09-15 17:42:50 +02:00
parent dce7fdcbc9
commit 3e41fe8938

View File

@ -1512,8 +1512,7 @@ int rsa_self_test( int verbose )
rsa_free( &rsa );
#else /* POLARSSL_PKCS1_V15 */
if( verbose != 0 )
printf( "skipper\n\n" );
((void) verbose);
#endif /* POLARSSL_PKCS1_V15 */
return( 0 );
}