diff options
author | nicm <nicm> | 2020-04-13 08:26:27 +0000 |
---|---|---|
committer | nicm <nicm> | 2020-04-13 08:26:27 +0000 |
commit | c20eb0c0ae3347c768894a6355adfd7ebae6f2f3 (patch) | |
tree | 970e82f29bd603d459476d44245ce73aad18666e /cmd-split-window.c | |
parent | 9cbe9675ea8a8efb01dcc5f267e6d5853b2cd58f (diff) | |
download | rtmux-c20eb0c0ae3347c768894a6355adfd7ebae6f2f3.tar.gz rtmux-c20eb0c0ae3347c768894a6355adfd7ebae6f2f3.tar.bz2 rtmux-c20eb0c0ae3347c768894a6355adfd7ebae6f2f3.zip |
Make struct cmd local to cmd.c and move it out of tmux.h.
Diffstat (limited to 'cmd-split-window.c')
-rw-r--r-- | cmd-split-window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-split-window.c b/cmd-split-window.c index c1c8be25..6a9210a7 100644 --- a/cmd-split-window.c +++ b/cmd-split-window.c @@ -53,7 +53,7 @@ const struct cmd_entry cmd_split_window_entry = { static enum cmd_retval cmd_split_window_exec(struct cmd *self, struct cmdq_item *item) { - struct args *args = self->args; + struct args *args = cmd_get_args(self); struct cmd_find_state *current = &item->shared->current; struct spawn_context sc; struct client *c = cmd_find_client(item, NULL, 1); |