From 932cfdc46487ad36bbdaeffe74daa428595d05c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Fri, 22 Sep 2023 18:20:05 +0200 Subject: [PATCH] wifi: Fix typo in WifiPsdu --- src/wifi/model/wifi-psdu.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wifi/model/wifi-psdu.cc b/src/wifi/model/wifi-psdu.cc index 9f2bd20f6..5a7fe7942 100644 --- a/src/wifi/model/wifi-psdu.cc +++ b/src/wifi/model/wifi-psdu.cc @@ -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; @@ -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;