summaryrefslogtreecommitdiffstats
path: root/usr.bin/tmux/cmd-set-option.c
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2017-02-16 10:53:25 +0000
committernicm <nicm@openbsd.org>2017-02-16 10:53:25 +0000
commitb81242d0662b928a5437d87d4a2026777bb1edc6 (patch)
tree7df213e680d72ff65428ce1e7bb2a6a6a8a32a12 /usr.bin/tmux/cmd-set-option.c
parentRevert "Release the NET_LOCK() before entering per-driver ioctl() routine". (diff)
downloadwireguard-openbsd-b81242d0662b928a5437d87d4a2026777bb1edc6.tar.xz
wireguard-openbsd-b81242d0662b928a5437d87d4a2026777bb1edc6.zip
Style nits.
Diffstat (limited to 'usr.bin/tmux/cmd-set-option.c')
-rw-r--r--usr.bin/tmux/cmd-set-option.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-set-option.c b/usr.bin/tmux/cmd-set-option.c
index ef2ff43f97f..c544e26a6d9 100644
--- a/usr.bin/tmux/cmd-set-option.c
+++ b/usr.bin/tmux/cmd-set-option.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: cmd-set-option.c,v 1.111 2017/02/03 21:01:02 nicm Exp $ */
+/* $OpenBSD: cmd-set-option.c,v 1.112 2017/02/16 10:53:25 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com>
@@ -72,7 +72,7 @@ cmd_set_option_exec(struct cmd *self, struct cmdq_item *item)
struct cmd_find_state *fs = &item->state.tflag;
struct session *s = fs->s;
struct winlink *wl = fs->wl;
- struct window *w = wl->window;
+ struct window *w;
struct client *c;
enum options_table_scope scope;
struct options *oo;