Style: Add braces around if-branch where else-branch has them

This commit is contained in:
Hanno Becker 2018-08-28 09:55:10 +01:00
parent ecbdf1c048
commit f0da6670dc

View file

@ -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 ) );