From 731b6e1ae3ea8f01e34139478bb8e331da103db7 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 f23a982a1..8b6e28cb8 100644 --- a/src/osmo-bsc/chan_alloc.c +++ b/src/osmo-bsc/chan_alloc.c @@ -45,7 +45,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;