From 29993a913895ce966f3935b89bfc35455b3d37bd Mon Sep 17 00:00:00 2001 From: Alexander Chemeris Date: Sat, 6 Jun 2020 00:40:56 +0300 Subject: [PATCH] chan_alloc: Fix typo in a comment. Change-Id: Iaed3fcd99ec8c08faa75e23af5b50a1d0e0905eb --- src/osmo-bsc/chan_alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/osmo-bsc/chan_alloc.c b/src/osmo-bsc/chan_alloc.c index 6829251e3..3569d4eaa 100644 --- a/src/osmo-bsc/chan_alloc.c +++ b/src/osmo-bsc/chan_alloc.c @@ -46,7 +46,7 @@ void bts_chan_load(struct pchan_load *cl, const struct gsm_bts *bts) llist_for_each_entry(trx, &bts->trx_list, list) { int i; - /* skip administratively deactivated tranxsceivers */ + /* skip administratively deactivated transceivers */ if (!trx_is_usable(trx)) continue;