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 /control-notify.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 'control-notify.c')
-rw-r--r-- | control-notify.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/control-notify.c b/control-notify.c index 16a98e3a..db3648a4 100644 --- a/control-notify.c +++ b/control-notify.c @@ -101,7 +101,7 @@ control_notify_window_layout_changed(struct window *w) } void -control_notify_window_unlinked(unused struct session *s, struct window *w) +control_notify_window_unlinked(__unused struct session *s, struct window *w) { struct client *c; struct session *cs; @@ -119,7 +119,7 @@ control_notify_window_unlinked(unused struct session *s, struct window *w) } void -control_notify_window_linked(unused struct session *s, struct window *w) +control_notify_window_linked(__unused struct session *s, struct window *w) { struct client *c; struct session *cs; @@ -183,7 +183,7 @@ control_notify_session_renamed(struct session *s) } void -control_notify_session_created(unused struct session *s) +control_notify_session_created(__unused struct session *s) { struct client *c; @@ -196,7 +196,7 @@ control_notify_session_created(unused struct session *s) } void -control_notify_session_close(unused struct session *s) +control_notify_session_close(__unused struct session *s) { struct client *c; |