aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/bts.c
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2012-12-18 23:56:05 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2012-12-20 19:01:27 +0100
commit6f93861cfc161a0b3c5780ca61e4fe8fcdadb611 (patch)
treeb481ebf91096790a0ea201acb3970d5c787e5639 /src/common/bts.c
parent6ae49691afc4dc067f9dfb6c4aa386ec05f3cc1c (diff)
misc: load_ind_period is uint8_t and 60*100 is bigger than that.
Address the compiler warning and truncate the value by hand.
Diffstat (limited to 'src/common/bts.c')
-rw-r--r--src/common/bts.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/bts.c b/src/common/bts.c
index e370b4bf..1375f4a5 100644
--- a/src/common/bts.c
+++ b/src/common/bts.c
@@ -70,7 +70,7 @@ int bts_init(struct gsm_bts *bts)
btsb->paging_state = paging_init(btsb, 200, 0);
/* configurable via OML */
- btsb->load.ccch.load_ind_period = 60*100;
+ btsb->load.ccch.load_ind_period = 112;
load_timer_start(bts);
btsb->rtp_jitter_buf_ms = 100;
btsb->max_ta = 63;