summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/grid.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2017-04-19 12:44:29 +0000
committernicm <nicm@openbsd.org>2017-04-19 12:44:29 +0000
commit8eb95462578314b1014a8986848c86e18dda7c8f (patch)
tree123973f66b0c471c19d8385c2a5f0de6fccab5a8 /usr.bin/tmux/grid.c
parentMake the test pass when an obj directory exists. (diff)
downloadwireguard-openbsd-8eb95462578314b1014a8986848c86e18dda7c8f.tar.xz
wireguard-openbsd-8eb95462578314b1014a8986848c86e18dda7c8f.zip
Style nits and a missing cast.
Diffstat (limited to 'usr.bin/tmux/grid.c')
-rw-r--r--usr.bin/tmux/grid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/grid.c b/usr.bin/tmux/grid.c
index ba0a4eb2fd7..1a926acba42 100644
--- a/usr.bin/tmux/grid.c
+++ b/usr.bin/tmux/grid.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: grid.c,v 1.68 2017/03/22 07:16:54 nicm Exp $ */
+/* $OpenBSD: grid.c,v 1.69 2017/04/19 12:44:29 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -89,7 +89,7 @@ grid_need_extended_cell(const struct grid_cell_entry *gce,
return (1);
if (gc->data.size != 1 || gc->data.width != 1)
return (1);
- if ((gc->fg & COLOUR_FLAG_RGB) ||(gc->bg & COLOUR_FLAG_RGB))
+ if ((gc->fg & COLOUR_FLAG_RGB) || (gc->bg & COLOUR_FLAG_RGB))
return (1);
return (0);
}