aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/gprs/sgsn_libgtp.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-09-28 08:20:58 +0800
committerHarald Welte <laforge@gnumonks.org>2016-09-28 00:47:28 +0000
commit7e5bb6283dbfe9c44d5be85b2cd04675153c011e (patch)
treefe3d235cbae5557c1849824aa08347755dca505e /openbsc/src/gprs/sgsn_libgtp.c
parent3ea9fece6dab31a8dc8f1bf9badad9bb80149fbd (diff)
COSMETIC: 'if' is not a function, so there is space before '('
Diffstat (limited to 'openbsc/src/gprs/sgsn_libgtp.c')
-rw-r--r--openbsc/src/gprs/sgsn_libgtp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/gprs/sgsn_libgtp.c b/openbsc/src/gprs/sgsn_libgtp.c
index 9f6532532..127ee30ba 100644
--- a/openbsc/src/gprs/sgsn_libgtp.c
+++ b/openbsc/src/gprs/sgsn_libgtp.c
@@ -328,13 +328,13 @@ static int send_act_pdp_cont_acc(struct sgsn_pdp_ctx *pctx)
/* 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;