lint cleanup: parameter reassignment

This commit is contained in:
Kurtis Rader
2016-10-20 18:53:31 -07:00
parent 345950ac1b
commit 00303ed07f
14 changed files with 33 additions and 52 deletions

View File

@@ -353,7 +353,7 @@ static int bisearch(wchar_t ucs, const struct interval *table, int max) {
if (ucs > table[mid].last)
min = mid + 1;
else if (ucs < table[mid].first)
max = mid - 1;
max = mid - 1; //!OCLINT(parameter reassignment)
else
return 1;
}