From 97b119ba6994d64a63de8d4a649b061389f7d24a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Sat, 19 Dec 2020 13:32:01 +0100 Subject: [PATCH] wifi: Invalid band is allowed for non-wifi signals --- src/wifi/model/wifi-phy-band.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/wifi/model/wifi-phy-band.h b/src/wifi/model/wifi-phy-band.h index fb6b1287c..b1bcc837f 100644 --- a/src/wifi/model/wifi-phy-band.h +++ b/src/wifi/model/wifi-phy-band.h @@ -57,7 +57,6 @@ inline std::ostream& operator<< (std::ostream& os, WifiPhyBand band) case WIFI_PHY_BAND_6GHZ: return (os << "6GHz"); default: - NS_FATAL_ERROR ("Invalid band"); return (os << "INVALID"); } }