SI: use defined constant instead of magic number

Related: OS#5783
Change-Id: I2ecac86fb860241bccf56c03d0454f07552fdc9d
This commit is contained in:
Max 2023-01-22 23:21:17 +03:00 committed by msuraev
parent 945e2514ca
commit 715dc37b10
1 changed files with 1 additions and 1 deletions

View File

@ -451,7 +451,7 @@ int gsm_bts_trx_set_system_infos(struct gsm_bts_trx *trx)
si_len[si_type] = 11;
break;
default:
si_len[si_type] = 23;
si_len[si_type] = GSM_MACBLOCK_LEN;
}
}
}