1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-06-05 00:22:11 +03:00

Forced cast to unsigned int for %u format in ecp_selftest()

This commit is contained in:
Paul Bakker 2013-12-30 19:04:47 +01:00
parent e1e962de91
commit ec4bea7eee

View File

@ -1869,7 +1869,7 @@ int ecp_self_test( int verbose )
mul_count != mul_c_prev )
{
if( verbose != 0 )
printf( "failed (%u)\n", i );
printf( "failed (%u)\n", (unsigned int) i );
ret = 1;
goto cleanup;
@ -1906,7 +1906,7 @@ int ecp_self_test( int verbose )
mul_count != mul_c_prev )
{
if( verbose != 0 )
printf( "failed (%u)\n", i );
printf( "failed (%u)\n", (unsigned int) i );
ret = 1;
goto cleanup;