diff options
author | 2020-04-13 20:54:15 +0000 | |
---|---|---|
committer | 2020-04-13 20:54:15 +0000 | |
commit | 73e52ff847ba9dfd12a86b8cc56007dccbb4d982 (patch) | |
tree | 2a7a6374a2964f4026535f37cbee818e1962fbf5 /usr.bin/tmux/cmd-set-option.c | |
parent | Make client -c and -t handling common in cmd-queue.c and try to be (diff) | |
download | wireguard-openbsd-73e52ff847ba9dfd12a86b8cc56007dccbb4d982.tar.xz wireguard-openbsd-73e52ff847ba9dfd12a86b8cc56007dccbb4d982.zip |
Missed a few warnings in previous.
Diffstat (limited to 'usr.bin/tmux/cmd-set-option.c')
-rw-r--r-- | usr.bin/tmux/cmd-set-option.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-set-option.c b/usr.bin/tmux/cmd-set-option.c index 0866c28001e..3f867ad34c1 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.132 2020/04/13 20:51:57 nicm Exp $ */ +/* $OpenBSD: cmd-set-option.c,v 1.133 2020/04/13 20:54:15 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -84,7 +84,6 @@ cmd_set_option_exec(struct cmd *self, struct cmdq_item *item) struct args *args = cmd_get_args(self); int append = args_has(args, 'a'); struct cmd_find_state *target = cmdq_get_target(item); - struct client *tc = cmdq_get_target_client(item); struct client *loop; struct session *s = target->s; struct window *w; |