diff options
author | Přemysl Eric Janouch <p@janouch.name> | 2021-12-21 06:26:53 +0100 |
---|---|---|
committer | Přemysl Eric Janouch <p@janouch.name> | 2021-12-21 06:26:53 +0100 |
commit | 410136a6474b92b45b26a0a92b6e3e7f63d26d9a (patch) | |
tree | c6fd2d1666cfe1c6c781bc24a410179edf065f22 /nncmpp.c | |
parent | 61a141203bf8d5a4589cdb7108ff8469564251d9 (diff) | |
download | nncmpp-410136a6474b92b45b26a0a92b6e3e7f63d26d9a.tar.gz nncmpp-410136a6474b92b45b26a0a92b6e3e7f63d26d9a.tar.xz nncmpp-410136a6474b92b45b26a0a92b6e3e7f63d26d9a.zip |
Fix up coding style inconsistency
Diffstat (limited to 'nncmpp.c')
-rw-r--r-- | nncmpp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); } |