diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-10-15 21:53:31 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2012-10-15 21:53:31 +0000 |
commit | af1e4d22e7a1ee1355ee754905ac3b21c7996430 (patch) | |
tree | 41d760ac61b415dd4a4c8804173432ade73801ee /usr.bin/tmux/cmd-new-window.c | |
parent | eafb8cff86203eabbce33f10fc7d19a470fd5f1b (diff) |
Fix some function prototypes from Helmut Tessarek.
Diffstat (limited to 'usr.bin/tmux/cmd-new-window.c')
-rw-r--r-- | usr.bin/tmux/cmd-new-window.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-new-window.c b/usr.bin/tmux/cmd-new-window.c index b1b1fa60f03..83c402444c8 100644 --- a/usr.bin/tmux/cmd-new-window.c +++ b/usr.bin/tmux/cmd-new-window.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-new-window.c,v 1.27 2012/08/14 08:51:53 nicm Exp $ */ +/* $OpenBSD: cmd-new-window.c,v 1.28 2012/10/15 21:53:30 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -26,7 +26,7 @@ * Create a new window. */ -int cmd_new_window_exec(struct cmd *, struct cmd_ctx *); +enum cmd_retval cmd_new_window_exec(struct cmd *, struct cmd_ctx *); const struct cmd_entry cmd_new_window_entry = { "new-window", "neww", |