diff options
author | Thomas Adam <thomas@xteddy.org> | 2020-04-14 00:01:41 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2020-04-14 00:01:41 +0100 |
commit | 653a159225609f7e5efb45bc78cdf7b480d7ef93 (patch) | |
tree | de075bcb7fdbd8a3fbd9f800c3a04c63cfdfac6b /cmd-run-shell.c | |
parent | 2159ff3256df4b823dfaed24e64047249cf079c2 (diff) | |
parent | fc83517913c8280c222a6cf78ca7fb8053421b37 (diff) | |
download | rtmux-653a159225609f7e5efb45bc78cdf7b480d7ef93.tar.gz rtmux-653a159225609f7e5efb45bc78cdf7b480d7ef93.tar.bz2 rtmux-653a159225609f7e5efb45bc78cdf7b480d7ef93.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'cmd-run-shell.c')
-rw-r--r-- | cmd-run-shell.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd-run-shell.c b/cmd-run-shell.c index 3c82ffdb..82d4a1a2 100644 --- a/cmd-run-shell.c +++ b/cmd-run-shell.c @@ -92,7 +92,6 @@ cmd_run_shell_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 cmd_run_shell_data *cdata; - struct client *c = cmd_find_client(item, NULL, 1); struct session *s = target->s; struct window_pane *wp = target->wp; const char *delay; @@ -102,7 +101,7 @@ cmd_run_shell_exec(struct cmd *self, struct cmdq_item *item) cdata = xcalloc(1, sizeof *cdata); if (args->argc != 0) - cdata->cmd = format_single_from_target(item, args->argv[0], c); + cdata->cmd = format_single_from_target(item, args->argv[0]); if (args_has(args, 't') && wp != NULL) cdata->wp_id = wp->id; |