Fix up coding style inconsistency

This commit is contained in:
Přemysl Eric Janouch 2021-12-21 06:26:53 +01:00
parent 61a141203b
commit 410136a647
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -2356,7 +2356,7 @@ incremental_search_match (const ucs4_t *needle, size_t len,
{
size_t i = 0;
for (; i < len && start + i < row->chars_len; i++)
if (uc_tolower(needle[i]) != uc_tolower(row->chars[start + i].c))
if (uc_tolower (needle[i]) != uc_tolower (row->chars[start + i].c))
break;
best = MAX (best, i);
}