Fix up coding style inconsistency
This commit is contained in:
parent
61a141203b
commit
410136a647
2
nncmpp.c
2
nncmpp.c
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue