From ce3ba0dfd2620e3566face861d2c22ff5765e137 Mon Sep 17 00:00:00 2001 From: Jamie McCrae Date: Fri, 17 Nov 2023 09:47:18 +0000 Subject: [PATCH] modules: openthread: platform: radio: Rename missed type Fixes an issue whereby a rename of a variable type has been forgotten in an instance, which now uses the correct type name Signed-off-by: Jamie McCrae --- modules/openthread/platform/radio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/openthread/platform/radio.c b/modules/openthread/platform/radio.c index 9c5de3c9d69..98eab182aad 100644 --- a/modules/openthread/platform/radio.c +++ b/modules/openthread/platform/radio.c @@ -1431,7 +1431,7 @@ otError otPlatRadioConfigureEnhAckProbing(otInstance *aInstance, otLinkMetrics a header_ie_len = set_vendor_ie_header_lm(aLinkMetrics.mLqi, aLinkMetrics.mLinkMargin, aLinkMetrics.mRssi, header_ie_buf); - config.ack_ie.header_ie = (struct ieee802154_ie_header *)header_ie_buf; + config.ack_ie.header_ie = (struct ieee802154_header_ie *)header_ie_buf; result = radio_api->configure(radio_dev, IEEE802154_CONFIG_ENH_ACK_HEADER_IE, &config); return result ? OT_ERROR_FAILED : OT_ERROR_NONE;