diff options
author | Tiago Cunha <tcunha@gmx.com> | 2012-08-12 19:29:05 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2012-08-12 19:29:05 +0000 |
commit | 45d68963ab31ce0378cc9d549d26bb2c2ddd5f45 (patch) | |
tree | fe4d3d2ea708d2d83e1b4b1b2c506cdfaf2e902b /cmd-choose-tree.c | |
parent | 200b0e5821d83de8c83fcc564fe7eda9253939e0 (diff) | |
download | rtmux-45d68963ab31ce0378cc9d549d26bb2c2ddd5f45.tar.gz rtmux-45d68963ab31ce0378cc9d549d26bb2c2ddd5f45.tar.bz2 rtmux-45d68963ab31ce0378cc9d549d26bb2c2ddd5f45.zip |
Sync OpenBSD patchset 1157:
Fix a return type.
Diffstat (limited to 'cmd-choose-tree.c')
-rw-r--r-- | cmd-choose-tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-choose-tree.c b/cmd-choose-tree.c index b33bf345..7132017e 100644 --- a/cmd-choose-tree.c +++ b/cmd-choose-tree.c @@ -34,7 +34,7 @@ * Enter choice mode to choose a session and/or window. */ -int cmd_choose_tree_exec(struct cmd *, struct cmd_ctx *); +enum cmd_retval cmd_choose_tree_exec(struct cmd *, struct cmd_ctx *); void cmd_choose_tree_callback(struct window_choose_data *); void cmd_choose_tree_free(struct window_choose_data *); |