mirror of
https://github.com/neovim/neovim.git
synced 2025-10-09 03:16:31 +00:00
refactor: uncrustify
Notable changes: replace all infinite loops to `while(true)` and remove `int` from `unsigned int`.
This commit is contained in:
@@ -1042,7 +1042,7 @@ static int item_compare(const void *s1, const void *s2, bool keep_zero)
|
||||
if (sortinfo->item_compare_lc) {
|
||||
res = strcoll(p1, p2);
|
||||
} else {
|
||||
res = sortinfo->item_compare_ic ? STRICMP(p1, p2): strcmp(p1, p2);
|
||||
res = sortinfo->item_compare_ic ? STRICMP(p1, p2) : strcmp(p1, p2);
|
||||
}
|
||||
} else {
|
||||
double n1, n2;
|
||||
|
Reference in New Issue
Block a user