Switch to the new code style

Signed-off-by: David Horstmann <david.horstmann@arm.com>
This commit is contained in:
David Horstmann
2023-01-05 15:44:23 +00:00
parent e4627f34da
commit ceeaeb9439
391 changed files with 73159 additions and 75109 deletions

View File

@@ -36,9 +36,9 @@ int main()
/* This version string is 18 bytes long, as advised by version.h. */
char version[18];
mbedtls_version_get_string_full( version );
mbedtls_version_get_string_full(version);
mbedtls_printf( "Built against %s\n", version );
mbedtls_printf("Built against %s\n", version);
return( 0 );
return 0;
}