From 410136a6474b92b45b26a0a92b6e3e7f63d26d9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Eric=20Janouch?= Date: Tue, 21 Dec 2021 06:26:53 +0100 Subject: Fix up coding style inconsistency --- nncmpp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nncmpp.c b/nncmpp.c index e148c2d..3e4383b 100644 --- a/nncmpp.c +++ b/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); } -- cgit v1.2.3