diff options
author | 2009-11-26 21:37:13 +0000 | |
---|---|---|
committer | 2009-11-26 21:37:13 +0000 | |
commit | 5c8958bdba9ee5a7557c4df88de415bf485e2c2f (patch) | |
tree | 07c0a4f88ae28792f462308b6c1a75047fcc1023 /usr.bin/tmux/client.c | |
parent | Don't try to be clever and mix tag queueing mechanisms. Few if any (diff) | |
download | wireguard-openbsd-5c8958bdba9ee5a7557c4df88de415bf485e2c2f.tar.xz wireguard-openbsd-5c8958bdba9ee5a7557c4df88de415bf485e2c2f.zip |
Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to
the rest to reduce lint output.
Diffstat (limited to 'usr.bin/tmux/client.c')
-rw-r--r-- | usr.bin/tmux/client.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/client.c b/usr.bin/tmux/client.c index e7f516c4243..80f7a3fe511 100644 --- a/usr.bin/tmux/client.c +++ b/usr.bin/tmux/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.33 2009/11/13 18:07:52 nicm Exp $ */ +/* $OpenBSD: client.c,v 1.34 2009/11/26 21:37:13 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -222,6 +222,7 @@ out: exit(client_exitval); } +/* ARGSUSED */ void client_signal(int sig, unused short events, unused void *data) { @@ -250,6 +251,7 @@ client_signal(int sig, unused short events, unused void *data) client_update_event(); } +/* ARGSUSED */ void client_callback(unused int fd, short events, unused void *data) { |