summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/options.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2017-05-31 17:56:49 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2017-05-31 17:56:49 +0000
commitb6b0addf6ab08f91536d8cb34d0dc8526ecb64f7 (patch)
tree87bc92fbaa4f25813611d5a4b696e998a4c3bcd3 /usr.bin/tmux/options.c
parentf21e94de18ebc6087a0451356da10a69ee07520d (diff)
Style and spacing nits.
Diffstat (limited to 'usr.bin/tmux/options.c')
-rw-r--r--usr.bin/tmux/options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/options.c b/usr.bin/tmux/options.c
index 42722f972d0..729e032e0ae 100644
--- a/usr.bin/tmux/options.c
+++ b/usr.bin/tmux/options.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: options.c,v 1.34 2017/04/22 06:13:30 nicm Exp $ */
+/* $OpenBSD: options.c,v 1.35 2017/05/31 17:56:48 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -114,7 +114,7 @@ options_free(struct options *oo)
{
struct options_entry *o, *tmp;
- RB_FOREACH_SAFE (o, options_tree, &oo->tree, tmp)
+ RB_FOREACH_SAFE(o, options_tree, &oo->tree, tmp)
options_remove(o);
free(oo);
}