Revert "Made index 1 based in log #2765"

This reverts commit 177c2764259c097d0f0f0fa6e081c42bcef91ce5.
This commit is contained in:
Jerry (Xinyu Hou) 2016-07-20 10:11:45 -07:00
parent a70cba80ea
commit fec53e812f
1 changed files with 1 additions and 1 deletions

View File

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