diff options
author | Thomas Adam <thomas@xteddy.org> | 2015-11-18 16:01:23 +0000 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2015-11-18 16:01:23 +0000 |
commit | 7fe8edc3962d5c30bf87677ecb2cf8633404f63c (patch) | |
tree | d354de9a04867168c1b296e15c556231f33c03f4 /tty.c | |
parent | f8a1f8843c91ebb1262ec6a000fd495eeb27e179 (diff) | |
parent | 577c0e3e5a79e9f1f860487bc3f411d26758f026 (diff) | |
download | rtmux-7fe8edc3962d5c30bf87677ecb2cf8633404f63c.tar.gz rtmux-7fe8edc3962d5c30bf87677ecb2cf8633404f63c.tar.bz2 rtmux-7fe8edc3962d5c30bf87677ecb2cf8633404f63c.zip |
Merge branch 'obsd-master'
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; |