diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-11-18 16:42:25 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2015-11-18 16:42:25 +0000 |
commit | a58eaec5403d39f2e89e79146a0ffbb90a956679 (patch) | |
tree | 07928a20cc78ba386cf1fb20b9aa09e90961fecd /window-clock.c | |
parent | 8b4b3ff4fcc73578f66697b158b56fdc28895368 (diff) | |
parent | 7fe8edc3962d5c30bf87677ecb2cf8633404f63c (diff) | |
download | rtmux-a58eaec5403d39f2e89e79146a0ffbb90a956679.tar.gz rtmux-a58eaec5403d39f2e89e79146a0ffbb90a956679.tar.bz2 rtmux-a58eaec5403d39f2e89e79146a0ffbb90a956679.zip |
Merge branch 'master' of github.com:tmux/tmux
Diffstat (limited to 'window-clock.c')
-rw-r--r-- | window-clock.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/window-clock.c b/window-clock.c index 51f97250..e8451f22 100644 --- a/window-clock.c +++ b/window-clock.c @@ -120,7 +120,7 @@ const char window_clock_table[14][5][5] = { }; void -window_clock_timer_callback(unused int fd, unused short events, void *arg) +window_clock_timer_callback(__unused int fd, __unused short events, void *arg) { struct window_pane *wp = arg; struct window_clock_mode_data *data = wp->modedata; @@ -185,9 +185,9 @@ window_clock_resize(struct window_pane *wp, u_int sx, u_int sy) } void -window_clock_key(struct window_pane *wp, unused struct client *c, - unused struct session *sess, unused key_code key, - unused struct mouse_event *m) +window_clock_key(struct window_pane *wp, __unused struct client *c, + __unused struct session *sess, __unused key_code key, + __unused struct mouse_event *m) { window_pane_reset_mode(wp); } |