mirror of
https://github.com/tmux/tmux.git
synced 2025-04-10 11:08:49 +00:00
Style nit - unnecessary brackets.
This commit is contained in:
parent
0fd9a97202
commit
3497843f02
4
utf8.c
4
utf8.c
@ -290,9 +290,9 @@ utf8_build(void)
|
|||||||
while (*ptr != NULL) {
|
while (*ptr != NULL) {
|
||||||
node = *ptr;
|
node = *ptr;
|
||||||
if (item->last < node->first)
|
if (item->last < node->first)
|
||||||
ptr = &(node->left);
|
ptr = &node->left;
|
||||||
else if (item->first > node->last)
|
else if (item->first > node->last)
|
||||||
ptr = &(node->right);
|
ptr = &node->right;
|
||||||
}
|
}
|
||||||
*ptr = item;
|
*ptr = item;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user