mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-12-23 04:35:28 +00:00
Minor style corrections
Move function block brace outside conditional compilation to not confuse some editors, and correct indentation.
This commit is contained in:
parent
9ac640326b
commit
9b2b66ebd2
|
@ -446,13 +446,12 @@ static int ssl_sig_hashes_for_test[] = {
|
|||
#if !defined(MBEDTLS_TIMING_C)
|
||||
int idle( mbedtls_net_context *fd,
|
||||
int idle_reason )
|
||||
{
|
||||
#else
|
||||
int idle( mbedtls_net_context *fd,
|
||||
mbedtls_timing_delay_context *timer,
|
||||
int idle_reason )
|
||||
{
|
||||
#endif
|
||||
{
|
||||
|
||||
int ret;
|
||||
int poll_type = 0;
|
||||
|
|
|
@ -848,14 +848,12 @@ static int ssl_sig_hashes_for_test[] = {
|
|||
#if !defined(MBEDTLS_TIMING_C)
|
||||
int idle( mbedtls_net_context *fd,
|
||||
int idle_reason )
|
||||
{
|
||||
#else
|
||||
int idle( mbedtls_net_context *fd,
|
||||
mbedtls_timing_delay_context *timer,
|
||||
int idle_reason )
|
||||
{
|
||||
#endif
|
||||
|
||||
{
|
||||
int ret;
|
||||
int poll_type = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue