mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-11 05:25:39 +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;
|
||||
if( remaining == 0 )
|
||||
{
|
||||
flush = SSL_FORCE_FLUSH;
|
||||
}
|
||||
else
|
||||
{
|
||||
MBEDTLS_SSL_DEBUG_MSG( 2, ( "Still %u bytes available in current datagram", (unsigned) remaining ) );
|
||||
|
|
Loading…
Reference in a new issue