aboutsummaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2015-04-22 10:05:54 +0100
committerThomas Adam <thomas@xteddy.org>2015-04-22 10:05:54 +0100
commit0a88377086329786c438d4973365fdb21186f4e4 (patch)
treedf5b091b400df84974f58bbfbb78ee26ccb9a5f6 /utf8.c
parentb25dc423b0b1369aaec5dee8e051d541bd55043f (diff)
parent3909aff06aa6de748ae057cab1e723eec2387edd (diff)
downloadrtmux-0a88377086329786c438d4973365fdb21186f4e4.tar.gz
rtmux-0a88377086329786c438d4973365fdb21186f4e4.tar.bz2
rtmux-0a88377086329786c438d4973365fdb21186f4e4.zip
Merge branch 'obsd-master'
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utf8.c b/utf8.c
index 39e708ba..76b4846a 100644
--- a/utf8.c
+++ b/utf8.c
@@ -291,9 +291,9 @@ utf8_build(void)
while (*ptr != NULL) {
node = *ptr;
if (item->last < node->first)
- ptr = &(node->left);
+ ptr = &node->left;
else if (item->first > node->last)
- ptr = &(node->right);
+ ptr = &node->right;
}
*ptr = item;
}