Fix improper spacing

Spacing between brackets did not follow the appropriate coding style

Signed-off-by: Joe Subbiani <joe.subbiani@arm.com>
This commit is contained in:
Joe Subbiani 2021-06-21 09:10:55 +01:00
parent e6ef5febfb
commit 3f9e64c03c

View File

@ -208,7 +208,7 @@ void aes_crypt_xts_size( int size, int retval )
TEST_ASSERT( mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, length, data_unit, src, output ) == retval ); TEST_ASSERT( mbedtls_aes_crypt_xts( &ctx, MBEDTLS_AES_ENCRYPT, length, data_unit, src, output ) == retval );
exit: exit:
mbedtls_aes_xts_free(&ctx); mbedtls_aes_xts_free( &ctx );
} }
/* END_CASE */ /* END_CASE */