mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-22 22:06:38 +01:00
Forced cast to unsigned int for %u format in ecp_selftest()
This commit is contained in:
parent
e1e962de91
commit
ec4bea7eee
1 changed files with 2 additions and 2 deletions
|
|
@ -1869,7 +1869,7 @@ int ecp_self_test( int verbose )
|
||||||
mul_count != mul_c_prev )
|
mul_count != mul_c_prev )
|
||||||
{
|
{
|
||||||
if( verbose != 0 )
|
if( verbose != 0 )
|
||||||
printf( "failed (%u)\n", i );
|
printf( "failed (%u)\n", (unsigned int) i );
|
||||||
|
|
||||||
ret = 1;
|
ret = 1;
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
@ -1906,7 +1906,7 @@ int ecp_self_test( int verbose )
|
||||||
mul_count != mul_c_prev )
|
mul_count != mul_c_prev )
|
||||||
{
|
{
|
||||||
if( verbose != 0 )
|
if( verbose != 0 )
|
||||||
printf( "failed (%u)\n", i );
|
printf( "failed (%u)\n", (unsigned int) i );
|
||||||
|
|
||||||
ret = 1;
|
ret = 1;
|
||||||
goto cleanup;
|
goto cleanup;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue