Fix formatting in various code to match spacing from coding style
diff --git a/library/cipher_wrap.c b/library/cipher_wrap.c
index ddfb006..efc4d44 100644
--- a/library/cipher_wrap.c
+++ b/library/cipher_wrap.c
@@ -1237,7 +1237,7 @@
                              unsigned int key_length )
 {
     /* we get key_length in bits, arc4 expects it in bytes */
-    if( key_length % 8 != 0)
+    if( key_length % 8 != 0 )
         return( POLARSSL_ERR_CIPHER_BAD_INPUT_DATA );
 
     arc4_setup( (arc4_context *) ctx, key, key_length / 8 );