=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/cmd-respawn-pane.c,v retrieving revision 1.20 retrieving revision 1.21 diff -c -r1.20 -r1.21 *** src/usr.bin/tmux/cmd-respawn-pane.c 2016/01/19 15:59:12 1.20 --- src/usr.bin/tmux/cmd-respawn-pane.c 2016/10/10 21:51:39 1.21 *************** *** 1,4 **** ! /* $OpenBSD: cmd-respawn-pane.c,v 1.20 2016/01/19 15:59:12 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: cmd-respawn-pane.c,v 1.21 2016/10/10 21:51:39 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott *************** *** 28,34 **** * Respawn a pane (restart the command). Kill existing if -k given. */ ! enum cmd_retval cmd_respawn_pane_exec(struct cmd *, struct cmd_q *); const struct cmd_entry cmd_respawn_pane_entry = { .name = "respawn-pane", --- 28,34 ---- * Respawn a pane (restart the command). Kill existing if -k given. */ ! static enum cmd_retval cmd_respawn_pane_exec(struct cmd *, struct cmd_q *); const struct cmd_entry cmd_respawn_pane_entry = { .name = "respawn-pane", *************** *** 43,49 **** .exec = cmd_respawn_pane_exec }; ! enum cmd_retval cmd_respawn_pane_exec(struct cmd *self, struct cmd_q *cmdq) { struct args *args = self->args; --- 43,49 ---- .exec = cmd_respawn_pane_exec }; ! static enum cmd_retval cmd_respawn_pane_exec(struct cmd *self, struct cmd_q *cmdq) { struct args *args = self->args;