COSMETIC: 'if' is not a function, so there is space before '('

Change-Id: Ic22623dffce998d70a3c67aa6e445de98f558ed7
diff --git a/openbsc/src/gprs/sgsn_libgtp.c b/openbsc/src/gprs/sgsn_libgtp.c
index 9f65325..127ee30 100644
--- a/openbsc/src/gprs/sgsn_libgtp.c
+++ b/openbsc/src/gprs/sgsn_libgtp.c
@@ -328,13 +328,13 @@
 
 	/* Send PDP CTX ACT to MS */
 	rc = gsm48_tx_gsm_act_pdp_acc(pctx);
-	if(rc < 0)
+	if (rc < 0)
 		return rc;
 
 	/* Send SNDCP XID to MS */
 	lle = &pctx->mm->gb.llme->lle[pctx->sapi];
 	rc = sndcp_sn_xid_req(lle,pctx->nsapi);
-	if(rc < 0)
+	if (rc < 0)
 		return rc;
 
 	return 0;