diff options
author | nicm <nicm> | 2015-11-18 14:27:44 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-11-18 14:27:44 +0000 |
commit | 577c0e3e5a79e9f1f860487bc3f411d26758f026 (patch) | |
tree | 9413b6a93eee1e053b0b5fa6258c78db0abb0819 /status.c | |
parent | 5a5b950e8b86606edea8f61c40bf8af28ab4f08b (diff) | |
download | rtmux-577c0e3e5a79e9f1f860487bc3f411d26758f026.tar.gz rtmux-577c0e3e5a79e9f1f860487bc3f411d26758f026.tar.bz2 rtmux-577c0e3e5a79e9f1f860487bc3f411d26758f026.zip |
Use __unused rather than rolling our own.
Diffstat (limited to 'status.c')
-rw-r--r-- | status.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -145,7 +145,7 @@ status_prompt_save_history(void) /* Status timer callback. */ void -status_timer_callback(unused int fd, unused short events, void *arg) +status_timer_callback(__unused int fd, __unused short events, void *arg) { struct client *c = arg; struct session *s = c->session; @@ -604,7 +604,7 @@ status_message_clear(struct client *c) /* Clear status line message after timer expires. */ void -status_message_callback(unused int fd, unused short event, void *data) +status_message_callback(__unused int fd, __unused short event, void *data) { struct client *c = data; |