Fix coding style issues

Signed-off-by: Gabor Mezei <gabor.mezei@arm.com>
diff --git a/library/ecp_curves.c b/library/ecp_curves.c
index 2da4bdd..0064265 100644
--- a/library/ecp_curves.c
+++ b/library/ecp_curves.c
@@ -5224,7 +5224,7 @@
 
     /* Save and clear the A1 content of the shared limb to prevent it
        from overwrite. */
-    mbedtls_mpi_uint remainder[P521_WIDTH] = {0};
+    mbedtls_mpi_uint remainder[P521_WIDTH] = { 0 };
     remainder[0] = N_p[P521_WIDTH - 1] >> 9;
     N_p[P521_WIDTH - 1] &= P521_MASK;
 
@@ -5242,7 +5242,7 @@
         memset(NT_p, 0, sizeof(mbedtls_mpi_uint) * NT_n);
     }
 
-    (void)mbedtls_mpi_core_add(N_p, N_p, remainder, P521_WIDTH);
+    (void) mbedtls_mpi_core_add(N_p, N_p, remainder, P521_WIDTH);
     N_p[P521_WIDTH - 1] += carry;
 
     return 0;