diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-18 14:27:45 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-11-18 14:27:45 +0000 |
commit | 020d2c76b774d1f4b19f7683a6f163fcc584251a (patch) | |
tree | 0de13b4a9e55168d93b3e924c3c3235d96714099 /usr.bin/tmux/screen-write.c | |
parent | 7e9a8899f550ff0eb982e12e65e70acbc1391660 (diff) |
Use __unused rather than rolling our own.
Diffstat (limited to 'usr.bin/tmux/screen-write.c')
-rw-r--r-- | usr.bin/tmux/screen-write.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/screen-write.c b/usr.bin/tmux/screen-write.c index c49e9b433ec..e470cc4fbe6 100644 --- a/usr.bin/tmux/screen-write.c +++ b/usr.bin/tmux/screen-write.c @@ -1,4 +1,4 @@ -/* $OpenBSD: screen-write.c,v 1.79 2015/11/14 11:45:43 nicm Exp $ */ +/* $OpenBSD: screen-write.c,v 1.80 2015/11/18 14:27:44 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -42,7 +42,7 @@ screen_write_start(struct screen_write_ctx *ctx, struct window_pane *wp, /* Finish writing. */ void -screen_write_stop(unused struct screen_write_ctx *ctx) +screen_write_stop(__unused struct screen_write_ctx *ctx) { } |