1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-07-30 22:43:08 +03:00

Remove radix arg from mbedtls_test_read_mpi

All uses have radix argument removed, using script.

Signed-off-by: Werner Lewis <werner.lewis@arm.com>
This commit is contained in:
Werner Lewis
2022-07-07 15:08:17 +01:00
parent 454fdc2501
commit 24b6078306
13 changed files with 246 additions and 247 deletions

View File

@ -179,7 +179,7 @@ void mbedtls_debug_print_mpi( int radix, char * value, char * file, int line,
TEST_ASSERT( mbedtls_ssl_setup( &ssl, &conf ) == 0 );
TEST_ASSERT( mbedtls_test_read_mpi( &val, radix, value ) == 0 );
TEST_ASSERT( mbedtls_test_read_mpi( &val, value ) == 0 );
mbedtls_ssl_conf_dbg( &conf, string_debug, &buffer);