cosmetic: fix formatting in if line

Fixes: eefa30dce8fa8e0ae16a3108e23041f92ea6ab21
Fixes: 2d6a69e69a4b4cb2b8cc63c4810dae44e5a4d8f6
Change-Id: I9ee5f4142cacf912145693c72a53c0f531bad2c6
diff --git a/ggsn/ggsn.c b/ggsn/ggsn.c
index 89b183f..7b32bde 100644
--- a/ggsn/ggsn.c
+++ b/ggsn/ggsn.c
@@ -358,8 +358,9 @@
 			member = pdp->peer[i];
 			send_trap(gsn, pdp, member, "imsi-rem-ip"); /* TRAP with IP removal */
 			ippool_freeip(member->pool, member);
-		} else if(i == 0)
+		} else if (i == 0) {
 			LOGPPDP(LOGL_ERROR, pdp, "Cannot find/free IP Pool member\n");
+		}
 	}
 
 	if (!pdp_priv) {
diff --git a/gtp/pdp.c b/gtp/pdp.c
index 739cf73..518f5d4 100644
--- a/gtp/pdp.c
+++ b/gtp/pdp.c
@@ -109,7 +109,7 @@
 
 int pdp_init(struct gsn_t *gsn)
 {
-	if(!g_gsn) {
+	if (!g_gsn) {
 		g_gsn = gsn;
 	} else {
 		LOGP(DLGTP, LOGL_FATAL, "This interface is depreacted and doesn't support multiple GGSN!");