From ac43c999a2f152ee17fe3cc7e81e1eb9e506704d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Deronne?= Date: Fri, 11 May 2018 16:45:38 +0200 Subject: [PATCH] wifi: Fix m_nSupported to uint8_t in AparfWifiManager --- src/wifi/model/aparf-wifi-manager.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wifi/model/aparf-wifi-manager.cc b/src/wifi/model/aparf-wifi-manager.cc index c59579b12..700997074 100644 --- a/src/wifi/model/aparf-wifi-manager.cc +++ b/src/wifi/model/aparf-wifi-manager.cc @@ -49,7 +49,7 @@ AparfWifiRemoteStation : public WifiRemoteStation uint8_t m_critRateIndex; //!< Critical rate. uint8_t m_prevPowerLevel; //!< Power level of the previous transmission. uint8_t m_powerLevel; //!< Current power level. - uint32_t m_nSupported; //!< Number of supported rates by the remote station. + uint8_t m_nSupported; //!< Number of supported rates by the remote station. bool m_initialized; //!< For initializing variables. AparfWifiManager::State m_aparfState; //!< The estimated state of the channel. };