wifi: fix minstrel-ht-stats output

This commit is contained in:
Alexander Krotov
2018-07-13 10:51:26 +03:00
parent 9d6dbb8ac8
commit adf8667d72

View File

@@ -1706,10 +1706,10 @@ MinstrelHtWifiManager::StatsDump (MinstrelHtWifiRemoteStation *station, uint8_t
}
else
{
of << std::setw (7) << " MCS" << i << "/" << (int) group.streams;
of << std::setw (7) << " MCS" << +i << "/" << (int) group.streams;
}
of << " " << std::setw (3) << idx << " ";
of << " " << std::setw (3) << +idx << " ";
/* tx_time[rate(i)] in usec */
txTime = GetFirstMpduTxTime (groupId, GetMcsSupported (station, station->m_groupsTable[groupId].m_ratesTable[i].mcsIndex));