summaryrefslogtreecommitdiffstats
path: root/cmd-show-options.c
diff options
context:
space:
mode:
authornicm <nicm>2020-04-13 20:54:15 +0000
committernicm <nicm>2020-04-13 20:54:15 +0000
commitfc83517913c8280c222a6cf78ca7fb8053421b37 (patch)
tree0b94e1839241f16f4fa3580324fdad113624d6d4 /cmd-show-options.c
parent3f7f9a0e20522c73e33480673496240f1bac724b (diff)
Missed a few warnings in previous.
Diffstat (limited to 'cmd-show-options.c')
-rw-r--r--cmd-show-options.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd-show-options.c b/cmd-show-options.c
index 5b62a78e..e2aec930 100644
--- a/cmd-show-options.c
+++ b/cmd-show-options.c
@@ -79,7 +79,6 @@ cmd_show_options_exec(struct cmd *self, struct cmdq_item *item)
{
struct args *args = cmd_get_args(self);
struct cmd_find_state *target = cmdq_get_target(item);
- struct client *c = cmd_find_client(item, NULL, 1);
struct options *oo;
char *argument, *name = NULL, *cause;
int window, idx, ambiguous, parent, scope;
@@ -99,7 +98,7 @@ cmd_show_options_exec(struct cmd *self, struct cmdq_item *item)
}
return (cmd_show_options_all(self, item, scope, oo));
}
- argument = format_single_from_target(item, args->argv[0], c);
+ argument = format_single_from_target(item, args->argv[0]);
name = options_match(argument, &idx, &ambiguous);
if (name == NULL) {