From e81cc6a158688360679402c5c11067b6a234bdfa Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Mon, 15 Feb 2016 20:13:04 +0100 Subject: use unsigned int to compare wih ARRAY_SIZE This is not really an issue, but makes coverity happy (CID 1351422). --- src/common/scheduler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/common/scheduler.c b/src/common/scheduler.c index de09fbf1..a8e5154d 100644 --- a/src/common/scheduler.c +++ b/src/common/scheduler.c @@ -137,7 +137,7 @@ const struct trx_chan_desc trx_chan_desc[_TRX_CHAN_MAX] = { int trx_sched_init(struct l1sched_trx *l1t, struct gsm_bts_trx *trx) { uint8_t tn; - int i; + unsigned int i; l1t->trx = trx; -- cgit v1.2.3