=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-swap-window.c,v retrieving revision 1.16 retrieving revision 1.17 diff -c -r1.16 -r1.17 *** src/usr.bin/tmux/cmd-swap-window.c 2016/01/19 15:59:12 1.16 --- src/usr.bin/tmux/cmd-swap-window.c 2016/10/10 21:51:39 1.17 *************** *** 1,4 **** ! /* $OpenBSD: cmd-swap-window.c,v 1.16 2016/01/19 15:59:12 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-swap-window.c,v 1.17 2016/10/10 21:51:39 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott *************** *** 26,32 **** * Swap one window with another. */ ! enum cmd_retval cmd_swap_window_exec(struct cmd *, struct cmd_q *); const struct cmd_entry cmd_swap_window_entry = { .name = "swap-window", --- 26,32 ---- * Swap one window with another. */ ! static enum cmd_retval cmd_swap_window_exec(struct cmd *, struct cmd_q *); const struct cmd_entry cmd_swap_window_entry = { .name = "swap-window", *************** *** 42,48 **** .exec = cmd_swap_window_exec }; ! enum cmd_retval cmd_swap_window_exec(struct cmd *self, struct cmd_q *cmdq) { struct session *src, *dst; --- 42,48 ---- .exec = cmd_swap_window_exec }; ! static enum cmd_retval cmd_swap_window_exec(struct cmd *self, struct cmd_q *cmdq) { struct session *src, *dst;