From 7fae211b1a6c9406afc8127a00f142614ea6cb5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Wed, 4 Jul 2018 19:44:36 +0200 Subject: [PATCH] wifi: Fix uint8_t printing issue --- src/wifi/model/wifi-phy.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wifi/model/wifi-phy.cc b/src/wifi/model/wifi-phy.cc index 7f9c89743..6a453db2f 100644 --- a/src/wifi/model/wifi-phy.cc +++ b/src/wifi/model/wifi-phy.cc @@ -1399,7 +1399,7 @@ WifiPhy::SetChannelNumber (uint8_t nch) } else { - NS_FATAL_ERROR ("Frequency not found for channel number " << nch); + NS_FATAL_ERROR ("Frequency not found for channel number " << +nch); } }