diff options
author | nicm <nicm> | 2015-04-20 14:48:55 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-04-20 14:48:55 +0000 |
commit | 3497843f0272e573d0a63cb6e94948591ae07667 (patch) | |
tree | 20c03512fea71e9808b9d613002e61fecb9cc0ae /utf8.c | |
parent | 0fd9a97202dc2878d9cf21f3bea01b599c21e61b (diff) | |
download | rtmux-3497843f0272e573d0a63cb6e94948591ae07667.tar.gz rtmux-3497843f0272e573d0a63cb6e94948591ae07667.tar.bz2 rtmux-3497843f0272e573d0a63cb6e94948591ae07667.zip |
Style nit - unnecessary brackets.
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } |