Sync OpenBSD patchset 1087:

Minor style nits - return ().
This commit is contained in:
Tiago Cunha
2012-04-10 09:54:29 +00:00
parent 09e6b7c137
commit e5b3858944
4 changed files with 7 additions and 7 deletions

View File

@ -70,7 +70,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