Review comment

This commit is contained in:
Eduardo Quezada 2023-09-30 18:22:38 -03:00
parent aff709a3cb
commit b724cfc578

View file

@ -1431,7 +1431,7 @@ static u16 rfu_STC_setSendData_org(u8 ni_or_uni, u8 bmSendSlot, u8 subFrameSize,
llFrameSize_p = &gRfuLinkStatus->remainLLFrameSizeChild[bm_slot_id];
frameSize = llsf_struct[gRfuLinkStatus->parentChild].frameSize;
#ifdef UBFIX
if (llFrameSize_p && (subFrameSize > *llFrameSize_p || subFrameSize <= frameSize))
if ((llFrameSize_p && subFrameSize > *llFrameSize_p) || subFrameSize <= frameSize)
#else
if (subFrameSize > *llFrameSize_p || subFrameSize <= frameSize)
#endif