diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-13 18:59:15 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-13 18:59:15 +0000 |
commit | 2755099ce8bfc8e0dbbb86a34df37906dd36c33e (patch) | |
tree | feb6f61f62366432252cede1d26251786391bac2 /usr.bin | |
parent | 83407da5f8c9abae9ffd450ab5ab1f34908f9606 (diff) |
Unreachable statement, found by lint.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/cmd-pipe-pane.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/tmux/cmd-pipe-pane.c b/usr.bin/tmux/cmd-pipe-pane.c index 38c967f11c3..c29458ea959 100644 --- a/usr.bin/tmux/cmd-pipe-pane.c +++ b/usr.bin/tmux/cmd-pipe-pane.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-pipe-pane.c,v 1.5 2009/11/04 22:43:11 nicm Exp $ */ +/* $OpenBSD: cmd-pipe-pane.c,v 1.6 2009/11/13 18:59:14 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -127,8 +127,6 @@ cmd_pipe_pane_exec(struct cmd *self, struct cmd_ctx *ctx) fatal("fcntl failed"); return (0); } - - return (0); } void |