Fix style issues introduced earlier
diff --git a/library/ecdsa.c b/library/ecdsa.c
index 6730762..8d1f9d6 100644
--- a/library/ecdsa.c
+++ b/library/ecdsa.c
@@ -189,7 +189,8 @@
 
 #define ECDSA_RS_LEAVE( SUB )   do {                                 \
     /* clear our sub-context when not in progress (done or error) */ \
-    if( rs_ctx != NULL && ret != MBEDTLS_ERR_ECP_IN_PROGRESS ) {     \
+    if( rs_ctx != NULL && ret != MBEDTLS_ERR_ECP_IN_PROGRESS )       \
+    {                                                                \
         ecdsa_restart_## SUB ##_free( rs_ctx->SUB );                 \
         mbedtls_free( rs_ctx->SUB );                                 \
         rs_ctx->SUB = NULL;                                          \