BSC_Tests/hopping: fix bit-mask reduction in f_TC_fh_params_gen_tr_ma()

Change-Id: Id8b1e9fb62f9deaa5517d7366271437af0fc6eef
Related: SYS#4868, OS#4545
This commit is contained in:
Vadim Yanitskiy 2020-09-02 19:01:30 +07:00
parent 38d069d09b
commit 93a2fda742
1 changed files with 1 additions and 1 deletions

View File

@ -6918,7 +6918,7 @@ return template MobileAllocationLV {
}
/* Ensure that ma_mask is octet-aligned */
ma_mask := substr(ma_mask, 0, ma_mask_len + 1);
ma_mask := substr(ma_mask, 0, ma_mask_len);
ma_mask_len := (ma_mask_len + 8 - 1) / 8;
ma_mask := f_pad_bit(ma_mask, ma_mask_len * 8, '0'B);