From 1a26c33ff7c2141e2a7ebbbd5e85f1d058a8f5ef Mon Sep 17 00:00:00 2001 From: nicm Date: Mon, 20 Apr 2015 14:48:55 +0000 Subject: [PATCH] Style nit - unnecessary brackets. --- usr.bin/tmux/utf8.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr.bin/tmux/utf8.c b/usr.bin/tmux/utf8.c index 4251ccaab65..16aa294ffd3 100644 --- a/usr.bin/tmux/utf8.c +++ b/usr.bin/tmux/utf8.c @@ -1,4 +1,4 @@ -/* $OpenBSD: utf8.c,v 1.12 2014/10/08 17:35:58 nicm Exp $ */ +/* $OpenBSD: utf8.c,v 1.13 2015/04/20 14:48:55 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott @@ -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; } -- 2.20.1