summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2015-12-08 08:14:04 +0000
committernicm <nicm@openbsd.org>2015-12-08 08:14:04 +0000
commit62a86332445c1cf0b03151fe30a2023f12406b1a (patch)
treed858cb4bacd7ea3a7deacd45ae760dd6e006127f
parentvmctl console - id is not optional (diff)
downloadwireguard-openbsd-62a86332445c1cf0b03151fe30a2023f12406b1a.tar.xz
wireguard-openbsd-62a86332445c1cf0b03151fe30a2023f12406b1a.zip
Spacing nits.
-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. */