mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-29 23:14:23 +01:00
Fix style issue
Add space before and after paranthesis.
This commit is contained in:
parent
45d23d62a1
commit
c24108a8c8
@ -266,8 +266,11 @@ int main( int argc, char *argv[] )
|
|||||||
cleanup:
|
cleanup:
|
||||||
|
|
||||||
#if defined(MBEDTLS_ERROR_C)
|
#if defined(MBEDTLS_ERROR_C)
|
||||||
mbedtls_strerror( ret, buf, sizeof(buf) );
|
if( ret != 0 )
|
||||||
mbedtls_printf( " ! Last error was: %s\n", buf );
|
{
|
||||||
|
mbedtls_strerror( ret, buf, sizeof( buf ) );
|
||||||
|
mbedtls_printf( " ! Last error was: %s\n", buf );
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
mbedtls_pk_free( &pk );
|
mbedtls_pk_free( &pk );
|
||||||
|
Loading…
Reference in New Issue
Block a user