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/names.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/names.c')
-rw-r--r-- | usr.bin/tmux/names.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/names.c b/usr.bin/tmux/names.c index edc2f86f1d5..858ba919399 100644 --- a/usr.bin/tmux/names.c +++ b/usr.bin/tmux/names.c @@ -1,4 +1,4 @@ -/* $OpenBSD: names.c,v 1.9 2009/11/04 23:54:57 nicm Exp $ */ +/* $OpenBSD: names.c,v 1.10 2009/11/26 21:37:13 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -41,6 +41,7 @@ queue_window_name(struct window *w) evtimer_add(&w->name_timer, &tv); } +/* ARGSUSED */ void window_name_callback(unused int fd, unused short events, void *data) { |