space and style fixes
diff --git a/library/psa_crypto.c b/library/psa_crypto.c
index 2f0cff2..90c7673 100755
--- a/library/psa_crypto.c
+++ b/library/psa_crypto.c
@@ -924,8 +924,8 @@
         {
             alg &= ~PSA_ALG_BLOCK_CIPHER_PADDING_MASK;
         }
-        switch( alg )
 
+        switch( alg )
         {
             case PSA_ALG_STREAM_CIPHER:
                 mode = MBEDTLS_MODE_STREAM;
@@ -1252,9 +1252,9 @@
     }
     if ( ( ret != 0 ) || ( status != PSA_SUCCESS ) )
     {
-        psa_mac_abort(operation);
-        if (ret != 0)
-            status = mbedtls_to_psa_error(ret);
+        psa_mac_abort( operation );
+        if ( ret != 0 )
+            status = mbedtls_to_psa_error( ret );
     }
 
     return status;