Skip to content

Commit

Permalink
wifi: Fix typo in WifiPsdu
Browse files Browse the repository at this point in the history
  • Loading branch information
sderonne committed Nov 23, 2024
1 parent b5845f3 commit 932cfdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/wifi/model/wifi-psdu.cc
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ WifiPsdu::GetAddr1() const
{
if (m_mpduList.at(i)->GetHeader().GetAddr1() != ra)
{
NS_ABORT_MSG("MPDUs in an A-AMPDU must have the same receiver address");
NS_ABORT_MSG("MPDUs in an A-MPDU must have the same receiver address");
}
}
return ra;
Expand All @@ -122,7 +122,7 @@ WifiPsdu::GetAddr2() const
{
if (m_mpduList.at(i)->GetHeader().GetAddr2() != ta)
{
NS_ABORT_MSG("MPDUs in an A-AMPDU must have the same transmitter address");
NS_ABORT_MSG("MPDUs in an A-MPDU must have the same transmitter address");
}
}
return ta;
Expand Down

0 comments on commit 932cfdc

Please sign in to comment.