summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm>2015-04-20 14:48:55 +0000
committernicm <nicm>2015-04-20 14:48:55 +0000
commit3497843f0272e573d0a63cb6e94948591ae07667 (patch)
tree20c03512fea71e9808b9d613002e61fecb9cc0ae
parent0fd9a97202dc2878d9cf21f3bea01b599c21e61b (diff)
Style nit - unnecessary brackets.
-rw-r--r--utf8.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utf8.c b/utf8.c
index 2940ebb9..12a0b29e 100644
--- a/utf8.c
+++ b/utf8.c
@@ -290,9 +290,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;
}