diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-18 14:27:45 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-18 14:27:45 +0000 |
commit | 020d2c76b774d1f4b19f7683a6f163fcc584251a (patch) | |
tree | 0de13b4a9e55168d93b3e924c3c3235d96714099 /usr.bin/tmux/alerts.c | |
parent | 7e9a8899f550ff0eb982e12e65e70acbc1391660 (diff) |
Use __unused rather than rolling our own.
Diffstat (limited to 'usr.bin/tmux/alerts.c')
-rw-r--r-- | usr.bin/tmux/alerts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/tmux/alerts.c b/usr.bin/tmux/alerts.c index 90281b10702..cfe1a5d3ccd 100644 --- a/usr.bin/tmux/alerts.c +++ b/usr.bin/tmux/alerts.c @@ -1,4 +1,4 @@ -/* $OpenBSD: alerts.c,v 1.4 2015/10/27 15:58:42 nicm Exp $ */ +/* $OpenBSD: alerts.c,v 1.5 2015/11/18 14:27:44 nicm Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott <nicm@users.sourceforge.net> @@ -35,7 +35,7 @@ int alerts_check_silence(struct session *, struct winlink *); void alerts_ring_bell(struct session *); void -alerts_timer(unused int fd, unused short events, void *arg) +alerts_timer(__unused int fd, __unused short events, void *arg) { struct window *w = arg; @@ -45,7 +45,7 @@ alerts_timer(unused int fd, unused short events, void *arg) } void -alerts_callback(unused int fd, unused short events, unused void *arg) +alerts_callback(__unused int fd, __unused short events, __unused void *arg) { struct window *w; struct session *s; |