1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-08-01 10:06:53 +03:00

Style fixes

This commit is contained in:
Mohammad Azim Khan
2018-07-18 17:48:37 +01:00
parent 440d8737c6
commit d2d0112ca8
6 changed files with 41 additions and 47 deletions

View File

@ -455,13 +455,13 @@ static void test_fail( const char *test, int line_no, const char* filename )
test_info.filename = filename;
}
int hexcmp( uint8_t * a, uint8_t * b, uint32_t a_len, uint32_t b_len)
int hexcmp( uint8_t * a, uint8_t * b, uint32_t a_len, uint32_t b_len )
{
int ret = 0;
uint32_t i = 0;
if ( a_len != b_len )
return( a_len - b_len );
return( -1 );
for( i = 0; i < a_len; i++ )
{