mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-06-21 06:41:16 -03:00
lint cleanup: parameter reassignment
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user