Revert "Made index 1 based in log #2765"
This reverts commit 177c2764259c097d0f0f0fa6e081c42bcef91ce5.
This commit is contained in:
parent
a70cba80ea
commit
fec53e812f
|
@ -696,7 +696,7 @@ KeyMap::findBestKey(const KeyEntryList& entryList,
|
||||||
const KeyItem& item = entryList[i].back();
|
const KeyItem& item = entryList[i].back();
|
||||||
if ((item.m_required & desiredState) ==
|
if ((item.m_required & desiredState) ==
|
||||||
(item.m_sensitive & desiredState)) {
|
(item.m_sensitive & desiredState)) {
|
||||||
LOG((CLOG_DEBUG1 "best key index %d of %d (exact)", i + 1, entryList.size()));
|
LOG((CLOG_DEBUG1 "best key index %d of %d (exact)", i, entryList.size()));
|
||||||
return i;
|
return i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue