address warning

This commit is contained in:
Samuel Gateau 2019-07-05 18:54:33 +02:00
parent 11f036246e
commit 1aa067db74

View file

@ -54,7 +54,7 @@ void Instance::updateMasterIndices() {
// Go through the displays list
{
_masterDisplay = NOT_FOUND;
for (int i = 0; i < _displays.size(); ++i) {
for (int i = 0; i < (int) _displays.size(); ++i) {
const auto& display = _displays[i];
if (display.count(keys::display::isMaster)) {
if (display[keys::display::isMaster].get<bool>()) {