wifi: Invalid band is allowed for non-wifi signals

This commit is contained in:
Sébastien Deronne
2020-12-19 13:32:01 +01:00
parent 52d0368ad9
commit 97b119ba69

View File

@@ -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");
}
}