diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-26 21:37:14 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-26 21:37:14 +0000 |
commit | e74df4cfa4b067f5abc2b65af1d49c951cbf7f05 (patch) | |
tree | c78fc50c57f5e5a4503857817ad4ce7b7859ac2f /usr.bin/tmux/window-choose.c | |
parent | f1d883ed899181343afc25b33819d94b452d91ab (diff) |
Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to
the rest to reduce lint output.
Diffstat (limited to 'usr.bin/tmux/window-choose.c')
-rw-r--r-- | usr.bin/tmux/window-choose.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/window-choose.c b/usr.bin/tmux/window-choose.c index d24283ddc60..cf4bf31c528 100644 --- a/usr.bin/tmux/window-choose.c +++ b/usr.bin/tmux/window-choose.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window-choose.c,v 1.11 2009/11/17 13:06:11 nicm Exp $ */ +/* $OpenBSD: window-choose.c,v 1.12 2009/11/26 21:37:13 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -169,6 +169,7 @@ window_choose_resize(struct window_pane *wp, u_int sx, u_int sy) window_choose_redraw_screen(wp); } +/* ARGSUSED */ void window_choose_key(struct window_pane *wp, unused struct client *c, int key) { @@ -275,6 +276,7 @@ window_choose_key(struct window_pane *wp, unused struct client *c, int key) } } +/* ARGSUSED */ void window_choose_mouse( struct window_pane *wp, unused struct client *c, struct mouse_event *m) |