Clean up of formatting, and potential integer overflow fix

This commit is contained in:
Andres AG 2016-10-06 15:23:39 +01:00 committed by Simon Butcher
parent d241f1cf17
commit a592dcc1c6
4 changed files with 8 additions and 8 deletions
programs/test

View file

@ -494,8 +494,8 @@ int main( int argc, char *argv[] )
cipher_info = mbedtls_cipher_info_from_type( cipher_type );
TIME_AND_TSC( title,
mbedtls_cipher_cmac( cipher_info, tmp, keysize,
buf, BUFSIZE, output ) );
mbedtls_cipher_cmac( cipher_info, tmp, keysize,
buf, BUFSIZE, output ) );
}
memset( buf, 0, sizeof( buf ) );