diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-04-06 16:39:46 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-04-06 16:39:46 +0100 |
commit | 3a6d82b7c8d4254fa87959d8cf19b313f5e05480 (patch) | |
tree | 8a9017893248fb45ad0d6eae473245f1b8a73bfb /cmd-command-prompt.c | |
parent | 0c84a20d2f44db64057f806c270ab1d751030fc1 (diff) | |
download | rtmux-3a6d82b7c8d4254fa87959d8cf19b313f5e05480.tar.gz rtmux-3a6d82b7c8d4254fa87959d8cf19b313f5e05480.tar.bz2 rtmux-3a6d82b7c8d4254fa87959d8cf19b313f5e05480.zip |
Some style nits.
Diffstat (limited to 'cmd-command-prompt.c')
-rw-r--r-- | cmd-command-prompt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-command-prompt.c b/cmd-command-prompt.c index a7a02702..4455856b 100644 --- a/cmd-command-prompt.c +++ b/cmd-command-prompt.c @@ -112,7 +112,7 @@ cmd_command_prompt_exec(struct cmd *self, struct cmdq_item *item) } next_prompt = prompts; } else - next_prompt = prompts = xstrdup (s); + next_prompt = prompts = xstrdup(s); if ((s = args_get(args, 'I')) != NULL) next_input = inputs = xstrdup(s); else |