Removed the whitespace which is causing CI to fail

Signed-off-by: Anton Matkin <anton.matkin@arm.com>
diff --git a/library/ssl_tls.c b/library/ssl_tls.c
index 12af239..78bcb92 100644
--- a/library/ssl_tls.c
+++ b/library/ssl_tls.c
@@ -6392,14 +6392,18 @@
             psa_set_key_algorithm(&shared_key_attributes, alg);
             psa_set_key_type(&shared_key_attributes, PSA_KEY_TYPE_DERIVE);
 
-            status = psa_pake_get_shared_key(&handshake->psa_pake_ctx, &shared_key_attributes, &shared_key_id);
+            status = psa_pake_get_shared_key(&handshake->psa_pake_ctx,
+                                             &shared_key_attributes,
+                                             &shared_key_id);
 
             if (status != PSA_SUCCESS) {
                 psa_key_derivation_abort(&derivation);
                 return MBEDTLS_ERR_SSL_HW_ACCEL_FAILED;
             }
 
-            status = psa_key_derivation_input_key(&derivation, PSA_KEY_DERIVATION_INPUT_SECRET, shared_key_id);
+            status = psa_key_derivation_input_key(&derivation,
+                                                  PSA_KEY_DERIVATION_INPUT_SECRET,
+                                                  shared_key_id);
 
             psa_destroy_key(shared_key_id);