print OML bts_nr rather than bts->nr

This commit is contained in:
Harald Welte 2009-05-01 17:22:09 +00:00
parent 6dab055752
commit 90f64767c4
1 changed files with 1 additions and 1 deletions

View File

@ -151,7 +151,7 @@ static char ts2str[255];
char *gsm_ts_name(struct gsm_bts_trx_ts *ts)
{
snprintf(ts2str, sizeof(ts2str), "(bts=%d,trx=%d,ts=%d)",
ts->trx->bts->nr, ts->trx->nr, ts->nr);
ts->trx->bts->bts_nr, ts->trx->nr, ts->nr);
return ts2str;
}