From 817f3c8699d447b618d2b4348045ef0f84f50950 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Tue, 30 Dec 2008 14:57:59 +0000 Subject: [PATCH] add missing return statement --- src/abis_rsl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/abis_rsl.c b/src/abis_rsl.c index 5342a9577..eb732290e 100644 --- a/src/abis_rsl.c +++ b/src/abis_rsl.c @@ -471,7 +471,6 @@ static int rsl_rx_chan_act_ack(struct msgb *msg) if (network->channel_response) (*network->channel_response)(lchan, 1); - return 0; } @@ -655,6 +654,8 @@ static int rsl_rx_chan_rqd(struct msgb *msg) /* inform the bsc that a channel has been allocated */ if (bts->network->channel_allocated) (*bts->network->channel_allocated)(lchan, chreq_reason); + + return ret; } static int abis_rsl_rx_cchan(struct msgb *msg)