From 6310a6040bd01eef7fb53dbc240004601fd0fadd Mon Sep 17 00:00:00 2001 From: Mathieu Lacage Date: Wed, 24 Oct 2007 20:00:30 +0200 Subject: [PATCH] fix coding style --- src/devices/wifi/supported-rates.cc | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/devices/wifi/supported-rates.cc b/src/devices/wifi/supported-rates.cc index da8b7af02..c3a2b6193 100644 --- a/src/devices/wifi/supported-rates.cc +++ b/src/devices/wifi/supported-rates.cc @@ -69,11 +69,13 @@ bool SupportedRates::IsSupportedRate (uint32_t bs) const { uint8_t rate = bs / 500000; - for (uint8_t i = 0; i < m_nRates; i++) { - if (rate == m_rates[i]) { - return true; + for (uint8_t i = 0; i < m_nRates; i++) + { + if (rate == m_rates[i]) + { + return true; + } } - } return false; } uint8_t