mirror of
https://github.com/tmux/tmux.git
synced 2025-09-01 20:57:00 +00:00
Minor style nits - return ().
This commit is contained in:
@ -71,7 +71,7 @@ cmd_join_pane_key_binding(struct cmd *self, int key)
|
||||
int
|
||||
cmd_join_pane_exec(struct cmd *self, struct cmd_ctx *ctx)
|
||||
{
|
||||
return join_pane(self, ctx, self->entry == &cmd_join_pane_entry);
|
||||
return (join_pane(self, ctx, self->entry == &cmd_join_pane_entry));
|
||||
}
|
||||
|
||||
int
|
||||
|
Reference in New Issue
Block a user