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/tmux.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/tmux.c')
-rw-r--r-- | usr.bin/tmux/tmux.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/tmux.c b/usr.bin/tmux/tmux.c index 0813b895d83..43288117c00 100644 --- a/usr.bin/tmux/tmux.c +++ b/usr.bin/tmux/tmux.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.c,v 1.60 2009/11/19 16:22:10 nicm Exp $ */ +/* $OpenBSD: tmux.c,v 1.61 2009/11/26 21:37:13 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -554,6 +554,7 @@ main_clear_signals(void) event_del(&main_ev_sigterm); } +/* ARGSUSED */ void main_signal(int sig, unused short events, unused void *data) { @@ -563,6 +564,7 @@ main_signal(int sig, unused short events, unused void *data) } } +/* ARGSUSED */ void main_callback(unused int fd, short events, void *data) { |