This commit is contained in:
Erik Frojdh
2020-02-03 16:00:24 +01:00
parent 972f21258a
commit a829e69313
3 changed files with 8 additions and 10 deletions

View File

@ -1288,7 +1288,7 @@ std::string CmdProxy::Counters(int action) {
std::vector <int> result;
for (size_t i = 0; i < 32; ++i) {
if (mask & (1 << i)) {
result.push_back((int)i);
result.push_back(static_cast<int>(i));
}
}
os << sls::ToString(result) << '\n';