oc2g: Fix 'unused variable' compiler warning

oml.c: In function ‘bts_model_opstart’:
oml.c:1883:32: warning: variable ‘ts’ set but not used [-Wunused-but-set-variable]
 1883 |         struct gsm_bts_trx_ts *ts;
      |                                ^~

Change-Id: Ifd5552f2dd56f4f9bf4c17d25b741f694f4f2168
This commit is contained in:
Harald Welte 2023-03-28 15:36:04 +02:00 committed by laforge
parent 362f2e50c2
commit 96263aa908
1 changed files with 1 additions and 1 deletions

View File

@ -1935,7 +1935,7 @@ int bts_model_opstart(struct gsm_bts *bts, struct gsm_abis_mo *mo,
break;
case NM_OC_CHANNEL:
ts = (struct gsm_bts_trx_ts*) obj;
rc = ts_opstart(obj);
rc = ts_opstart(ts);
break;
case NM_OC_GPRS_NSE:
case NM_OC_GPRS_CELL: