aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@osmocom.org>2022-03-28 21:28:42 +0200
committerHarald Welte <laforge@osmocom.org>2022-03-28 21:28:42 +0200
commitf42c787ce669bcbcfb41e012a3830b0719270c3c (patch)
tree7f870f4274fcf53a14fd4d39c24bfc96bb333077
parentdcbdb820ea2a62b39b2215b4e439f63f2a89bbd9 (diff)
CBSP_Types: Fix typo num_bcats_compl -> num_bcast_compl
-rw-r--r--library/CBSP_Types.ttcn10
1 files changed, 5 insertions, 5 deletions
diff --git a/library/CBSP_Types.ttcn b/library/CBSP_Types.ttcn
index 5ab3c98b..b282454b 100644
--- a/library/CBSP_Types.ttcn
+++ b/library/CBSP_Types.ttcn
@@ -161,31 +161,31 @@ type union CBSP_FIELD_NumBcastCompl {
};
type record CBSP_FIELD_NumBcastCompl_CGI {
BSSMAP_FIELD_CellIdentification_CGI ci,
- uint16_t num_bcats_compl,
+ uint16_t num_bcast_compl,
CBSP_NumBcastInfo num_bcast_info,
BIT4 spare1_4
};
type record CBSP_FIELD_NumBcastCompl_LAC_CI {
BSSMAP_FIELD_CellIdentification_LAC_CI ci,
- uint16_t num_bcats_compl,
+ uint16_t num_bcast_compl,
CBSP_NumBcastInfo num_bcast_info,
BIT4 spare1_4
};
type record CBSP_FIELD_NumBcastCompl_LAI {
BSSMAP_FIELD_CellIdentification_LAI ci,
- uint16_t num_bcats_compl,
+ uint16_t num_bcast_compl,
CBSP_NumBcastInfo num_bcast_info,
BIT4 spare1_4
};
type record CBSP_FIELD_NumBcastCompl_CI {
OCT2 ci,
- uint16_t num_bcats_compl,
+ uint16_t num_bcast_compl,
CBSP_NumBcastInfo num_bcast_info,
BIT4 spare1_4
};
type record CBSP_FIELD_NumBcastCompl_LAC {
OCT2 lac,
- uint16_t num_bcats_compl,
+ uint16_t num_bcast_compl,
CBSP_NumBcastInfo num_bcast_info,
BIT4 spare1_4
};