Minor style nits - return ().

This commit is contained in:
Nicholas Marriott
2012-04-01 20:53:47 +00:00
parent 20d10c608d
commit c829bdf537
4 changed files with 7 additions and 7 deletions

View File

@ -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