aboutsummaryrefslogtreecommitdiffstats
path: root/src/gprs_rlcmac.cpp
diff options
context:
space:
mode:
authorAndreas Eversberg <jolly@eversberg.eu>2012-08-07 15:31:16 +0200
committerAndreas Eversberg <jolly@eversberg.eu>2012-08-07 15:31:16 +0200
commit309ce743767d321565d8c63f0d78563154db3cd9 (patch)
tree1995a777e306c4bd6191deb02df9e21fae22c32b /src/gprs_rlcmac.cpp
parent14db19ed11d38f0d6f08bb1d6139b7b90f4fdc37 (diff)
Fix: tfi_alloc() has some signed attributes
Diffstat (limited to 'src/gprs_rlcmac.cpp')
-rw-r--r--src/gprs_rlcmac.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gprs_rlcmac.cpp b/src/gprs_rlcmac.cpp
index a827d363..956d52fc 100644
--- a/src/gprs_rlcmac.cpp
+++ b/src/gprs_rlcmac.cpp
@@ -84,7 +84,7 @@ extern void *tall_pcu_ctx;
* TRX in case of existing TBF for TLLI in the other direction. */
/* search for free TFI and return TFI, TRX and first TS */
int tfi_alloc(enum gprs_rlcmac_tbf_direction dir, uint8_t *_trx, uint8_t *_ts,
- uint8_t use_trx, uint8_t first_ts)
+ int8_t use_trx, int8_t first_ts)
{
struct gprs_rlcmac_bts *bts = gprs_rlcmac_bts;
struct gprs_rlcmac_pdch *pdch;