fix coding style

This commit is contained in:
Mathieu Lacage
2007-10-24 20:00:30 +02:00
parent ec31e714d6
commit 6310a6040b

View File

@@ -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