aboutsummaryrefslogtreecommitdiffstats
path: root/src/common/oml.c
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-06-10 23:28:34 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-06-11 00:35:51 +0700
commitba0e5c7d5091a1c334e23a52b5903bdcecf9798a (patch)
treea20c5cf20cc28fb4e0cb71c18cbe106caa88d6b9 /src/common/oml.c
parentf1c2d40b2cef9c5c9ce3f4890d4291620013cdd8 (diff)
gsm_data_shared: use bitvec API to allocate the feature vector
Diffstat (limited to 'src/common/oml.c')
-rw-r--r--src/common/oml.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/oml.c b/src/common/oml.c
index 587a808f..5610ab12 100644
--- a/src/common/oml.c
+++ b/src/common/oml.c
@@ -174,7 +174,7 @@ static inline void add_bts_attrs(struct msgb *msg, const struct gsm_bts *bts)
static inline void add_bts_feat(struct msgb *msg, const struct gsm_bts *bts)
{
unsigned int len = OSMO_BYTES_FOR_BITS(_NUM_BTS_FEAT);
- msgb_tl16v_put(msg, NM_ATT_MANUF_ID, len, bts->_features_data);
+ msgb_tl16v_put(msg, NM_ATT_MANUF_ID, len, bts->features->data);
}
static inline void add_trx_attr(struct msgb *msg, const struct gsm_bts_trx *trx)