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 /tty.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 'tty.c')
-rw-r--r-- | tty.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -172,7 +172,7 @@ tty_open(struct tty *tty, char **cause) } void -tty_read_callback(unused struct bufferevent *bufev, void *data) +tty_read_callback(__unused struct bufferevent *bufev, void *data) { struct tty *tty = data; @@ -181,8 +181,8 @@ tty_read_callback(unused struct bufferevent *bufev, void *data) } void -tty_error_callback( - unused struct bufferevent *bufev, unused short what, unused void *data) +tty_error_callback(__unused struct bufferevent *bufev, __unused short what, + __unused void *data) { } @@ -591,7 +591,7 @@ tty_repeat_space(struct tty *tty, u_int n) * pane. */ int -tty_large_region(unused struct tty *tty, const struct tty_ctx *ctx) +tty_large_region(__unused struct tty *tty, const struct tty_ctx *ctx) { struct window_pane *wp = ctx->wp; |