aboutsummaryrefslogtreecommitdiffstats
path: root/src/gsm/abis_nm.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-01-02 14:10:25 +0100
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-01-02 14:10:25 +0100
commitd4d87c5427bdf838cbfc3948bcf035e1e4036fd9 (patch)
tree52ffdcaf07314b8aeeffc76552c563425a046183 /src/gsm/abis_nm.c
parent324470205860303edb6ea213fc8670b2b69a7f11 (diff)
abis: Use the right return value for abis_nm_pchan4chcomb
abis_nm_pchan4chcomb will return a pchan for a given channel combination but returned a value of the channel combination. Fix it to return the physical channel combination. Fixes: Coverity CID 1040767
Diffstat (limited to 'src/gsm/abis_nm.c')
-rw-r--r--src/gsm/abis_nm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gsm/abis_nm.c b/src/gsm/abis_nm.c
index bb7008b0..2c23a648 100644
--- a/src/gsm/abis_nm.c
+++ b/src/gsm/abis_nm.c
@@ -430,7 +430,7 @@ int abis_nm_chcomb4pchan(enum gsm_phys_chan_config pchan)
}
/*! \brief Obtain physical channel config for OML Channel Combination */
-enum abis_nm_chan_comb abis_nm_pchan4chcomb(uint8_t chcomb)
+enum gsm_phys_chan_config abis_nm_pchan4chcomb(uint8_t chcomb)
{
int i;
for (i = 0; i < ARRAY_SIZE(chcomb4pchan); i++) {