mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-04-26 19:16:28 +00:00
Style: Add braces around if-branch where else-branch has them
This commit is contained in:
parent
ecbdf1c048
commit
f0da6670dc
|
@ -3440,7 +3440,9 @@ int mbedtls_ssl_write_record( mbedtls_ssl_context *ssl, uint8_t force_flush )
|
||||||
|
|
||||||
remaining = (size_t) ret;
|
remaining = (size_t) ret;
|
||||||
if( remaining == 0 )
|
if( remaining == 0 )
|
||||||
|
{
|
||||||
flush = SSL_FORCE_FLUSH;
|
flush = SSL_FORCE_FLUSH;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
MBEDTLS_SSL_DEBUG_MSG( 2, ( "Still %u bytes available in current datagram", (unsigned) remaining ) );
|
MBEDTLS_SSL_DEBUG_MSG( 2, ( "Still %u bytes available in current datagram", (unsigned) remaining ) );
|
||||||
|
|
Loading…
Reference in a new issue