Fix arguments formatting mistake

Signed-off-by: Paul Elliott <paul.elliott@arm.com>
diff --git a/library/psa_crypto_driver_wrappers.c b/library/psa_crypto_driver_wrappers.c
index 09fff0c..1dd3b2d 100644
--- a/library/psa_crypto_driver_wrappers.c
+++ b/library/psa_crypto_driver_wrappers.c
@@ -1509,7 +1509,7 @@
             operation->id = PSA_CRYPTO_TRANSPARENT_TEST_DRIVER_ID;
             status = mbedtls_test_transparent_aead_decrypt_setup(
                         &operation->ctx.transparent_test_driver_ctx,
-                         attributes,
+                        attributes,
                         key_buffer, key_buffer_size,
                         alg );
 
@@ -1523,7 +1523,7 @@
             operation->id = PSA_CRYPTO_MBED_TLS_DRIVER_ID;
             status = mbedtls_psa_aead_decrypt_setup(
                         &operation->ctx.mbedtls_ctx,
-                         attributes,
+                        attributes,
                         key_buffer, key_buffer_size,
                         alg );