Skip to content

Commit 781080e

Browse files
committed
wifi: Fix incorrect check on optional center 26-tones RU indication
1 parent db15cd1 commit 781080e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/wifi/model/he/he-ppdu.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ HePpdu::SetHeMuUserInfos(WifiTxVector& txVector,
275275
}
276276
for (const auto& userInfo : contentChannel)
277277
{
278-
if (*center26ToneRuIndication && (numUsersLeftInCc == 1))
278+
if (center26ToneRuIndication && (numUsersLeftInCc == 1))
279279
{
280280
// handle central 26 tones
281281
if ((contentChannelIndex == 0) &&

0 commit comments

Comments
 (0)