diff options
author | 2013-03-22 10:31:22 +0000 | |
---|---|---|
committer | 2013-03-22 10:31:22 +0000 | |
commit | dafea000a2301e1d15ca0e6c4149fa50aaa8b1a3 (patch) | |
tree | edf134dd37694ff21d97a35eec427f602582c545 /usr.bin/tmux/tty.c | |
parent | Remove stray test code which would convert abc to x. (diff) | |
download | wireguard-openbsd-dafea000a2301e1d15ca0e6c4149fa50aaa8b1a3.tar.xz wireguard-openbsd-dafea000a2301e1d15ca0e6c4149fa50aaa8b1a3.zip |
No more lint means no more ARGSUSED.
Diffstat (limited to 'usr.bin/tmux/tty.c')
-rw-r--r-- | usr.bin/tmux/tty.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/tmux/tty.c b/usr.bin/tmux/tty.c index 6c8eb3ddc0e..c59cf67df21 100644 --- a/usr.bin/tmux/tty.c +++ b/usr.bin/tmux/tty.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tty.c,v 1.151 2013/03/22 10:30:04 nicm Exp $ */ +/* $OpenBSD: tty.c,v 1.152 2013/03/22 10:31:22 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -161,7 +161,6 @@ tty_open(struct tty *tty, const char *overrides, char **cause) return (0); } -/* ARGSUSED */ void tty_read_callback(unused struct bufferevent *bufev, void *data) { @@ -171,7 +170,6 @@ tty_read_callback(unused struct bufferevent *bufev, void *data) ; } -/* ARGSUSED */ void tty_error_callback( unused struct bufferevent *bufev, unused short what, unused void *data) |