mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-07-29 11:41:15 +03:00
Correct signedness of printf specifier in self tests
This commit is contained in:
committed by
Manuel Pégourié-Gonnard
parent
16b04ce641
commit
b6897f67a4
@ -561,7 +561,7 @@ int mbedtls_chacha20_self_test( int verbose )
|
||||
{
|
||||
if ( verbose != 0 )
|
||||
{
|
||||
mbedtls_printf( " ChaCha20 test %zi ", i );
|
||||
mbedtls_printf( " ChaCha20 test %zu ", i );
|
||||
}
|
||||
|
||||
result = mbedtls_chacha20_crypt( test_keys[i],
|
||||
|
Reference in New Issue
Block a user