mirror of
https://git.suyu.dev/suyu/mbedtls.git
synced 2025-12-24 00:06:32 +01:00
Fixes to style following review
Made code spacing consistent with guidelines, and corrected the misnamed test steps in basic-build-test.sh
This commit is contained in:
parent
ab0c51d782
commit
f1547632dc
2 changed files with 8 additions and 8 deletions
|
|
@ -99,7 +99,7 @@ static int run_test_snprintf( void )
|
|||
|
||||
int main( int argc, char *argv[] )
|
||||
{
|
||||
int ret = 0, v, suites_tested = 0, suites_failed =0,
|
||||
int ret = 0, v, suites_tested = 0, suites_failed = 0,
|
||||
exitcode = EXIT_SUCCESS;
|
||||
#if defined(MBEDTLS_MEMORY_BUFFER_ALLOC_C)
|
||||
unsigned char buf[1000000];
|
||||
|
|
@ -376,7 +376,7 @@ int main( int argc, char *argv[] )
|
|||
|
||||
if( v != 0 )
|
||||
{
|
||||
mbedtls_printf( " Executed %d test suites\n\n", suites_tested);
|
||||
mbedtls_printf( " Executed %d test suites\n\n", suites_tested );
|
||||
|
||||
if( suites_failed > 0)
|
||||
{
|
||||
|
|
@ -395,6 +395,6 @@ int main( int argc, char *argv[] )
|
|||
if( suites_failed > 0)
|
||||
exitcode = EXIT_FAILURE;
|
||||
|
||||
exit(exitcode);
|
||||
exit( exitcode );
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue