[meshcop-tlv] fix typo with ChannelMasEntry (Note missing 'k') (#5948)

This commit is contained in:
Bob MacDonald
2020-12-13 08:22:16 -08:00
committed by GitHub
parent 6b48c74787
commit e76cf7f907
+1 -1
View File
@@ -284,7 +284,7 @@ uint32_t ChannelMaskTlv::GetChannelMask(void) const
#if OPENTHREAD_CONFIG_RADIO_915MHZ_OQPSK_SUPPORT
if (channelPage == OT_RADIO_CHANNEL_PAGE_2)
{
mask |= static_cast<const ChannelMasEntry *>(cur)->GetMask() & OT_RADIO_915MHZ_OQPSK_CHANNEL_MASK;
mask |= static_cast<const ChannelMaskEntry *>(cur)->GetMask() & OT_RADIO_915MHZ_OQPSK_CHANNEL_MASK;
}
#endif