summaryrefslogtreecommitdiff
path: root/usr.bin/tmux
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2015-12-08 08:14:05 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2015-12-08 08:14:05 +0000
commit5aeffd5692a740589afd5909049210fee39e7bd5 (patch)
tree24377b19246a39b3ff86b3d5386a6a0c285deb55 /usr.bin/tmux
parent623581263df406a472665448f0ae8165d1838ef0 (diff)
Spacing nits.
Diffstat (limited to 'usr.bin/tmux')
-rw-r--r--usr.bin/tmux/options.c4
-rw-r--r--usr.bin/tmux/tmux.h12
2 files changed, 9 insertions, 7 deletions
diff --git a/usr.bin/tmux/options.c b/usr.bin/tmux/options.c
index af3fb28902c..cea57e5d054 100644
--- a/usr.bin/tmux/options.c
+++ b/usr.bin/tmux/options.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: options.c,v 1.15 2015/11/18 13:06:54 nicm Exp $ */
+/* $OpenBSD: options.c,v 1.16 2015/12/08 08:14:04 nicm Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -47,7 +47,7 @@ options_cmp(struct options_entry *o1, struct options_entry *o2)
struct options *
options_create(struct options *parent)
{
- struct options *oo;
+ struct options *oo;
oo = xcalloc(1, sizeof *oo);
RB_INIT(&oo->tree);
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 9379effe2fc..58ca206df90 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.595 2015/12/08 01:10:31 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.596 2015/12/08 08:14:04 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -693,10 +693,12 @@ struct grid {
/* Hook data structures. */
struct hook {
- const char *name;
- struct cmd_q *cmdq;
- struct cmd_list *cmdlist;
- RB_ENTRY(hook) entry;
+ const char *name;
+
+ struct cmd_q *cmdq;
+ struct cmd_list *cmdlist;
+
+ RB_ENTRY(hook) entry;
};
/* Option data structures. */