mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-02-02 05:21:08 +00:00
Removed 'z' length modifier from low-value size_t in ecp_selftest()
This commit is contained in:
parent
e7f5133590
commit
92bcadb110
|
@ -1869,7 +1869,7 @@ int ecp_self_test( int verbose )
|
|||
mul_count != mul_c_prev )
|
||||
{
|
||||
if( verbose != 0 )
|
||||
printf( "failed (%zu)\n", i );
|
||||
printf( "failed (%u)\n", 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 (%zu)\n", i );
|
||||
printf( "failed (%u)\n", i );
|
||||
|
||||
ret = 1;
|
||||
goto cleanup;
|
||||
|
|
Loading…
Reference in a new issue