use unsigned int to compare wih ARRAY_SIZE

This is not really an issue, but makes coverity happy (CID 1351422).
This commit is contained in:
Harald Welte 2016-02-15 20:13:04 +01:00
parent 69b959e557
commit e81cc6a158
1 changed files with 1 additions and 1 deletions

View File

@ -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;