Minor style fixes to ssl_cli.c

Signed-off-by: David Horstmann <david.horstmann@arm.com>
diff --git a/library/ssl_cli.c b/library/ssl_cli.c
index 9cce2e6..4bef15c 100644
--- a/library/ssl_cli.c
+++ b/library/ssl_cli.c
@@ -2060,7 +2060,7 @@
     int accept_comp = 1;
 
     /* Suppress warnings in some configurations */
-    ( void )ssl;
+    (void) ssl;
 #if defined(MBEDTLS_ZLIB_SUPPORT)
     /* See comments in ssl_write_client_hello() */
 #if defined(MBEDTLS_SSL_PROTO_DTLS)
@@ -2254,7 +2254,7 @@
      */
     comp = buf[37 + n];
 
-    if( !is_compression_ok(ssl, comp) )
+    if( !is_compression_ok( ssl, comp ) )
     {
         MBEDTLS_SSL_DEBUG_MSG( 1,
             ( "server hello, bad compression: %d", comp ) );