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/window-clock.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/window-clock.c')
-rw-r--r-- | usr.bin/tmux/window-clock.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/tmux/window-clock.c b/usr.bin/tmux/window-clock.c index 8a68dd3778b..44bcc5c4549 100644 --- a/usr.bin/tmux/window-clock.c +++ b/usr.bin/tmux/window-clock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: window-clock.c,v 1.2 2009/06/27 14:40:22 nicm Exp $ */ +/* $OpenBSD: window-clock.c,v 1.3 2009/11/26 21:37:13 nicm Exp $ */ /* * Copyright (c) 2009 Nicholas Marriott <nicm@users.sourceforge.net> @@ -82,6 +82,7 @@ window_clock_resize(struct window_pane *wp, u_int sx, u_int sy) window_clock_draw_screen(wp); } +/* ARGSUSED */ void window_clock_key( struct window_pane *wp, unused struct client *c, unused int key) |