diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-03-21 19:27:18 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2017-03-21 19:27:18 +0000 |
commit | cd7550cdf1a0d38af89fc99947bc093fbe6c1c6e (patch) | |
tree | 319e12b0959680505722c70dea1b74e83f1b965a | |
parent | c2b53598ad0130398e923135d5c80e0884356feb (diff) | |
download | rtmux-cd7550cdf1a0d38af89fc99947bc093fbe6c1c6e.tar.gz rtmux-cd7550cdf1a0d38af89fc99947bc093fbe6c1c6e.tar.bz2 rtmux-cd7550cdf1a0d38af89fc99947bc093fbe6c1c6e.zip |
Some __unused.
-rw-r--r-- | compat/setproctitle.c | 2 | ||||
-rw-r--r-- | osdep-sunos.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/compat/setproctitle.c b/compat/setproctitle.c index 990f4ded..e72ae274 100644 --- a/compat/setproctitle.c +++ b/compat/setproctitle.c @@ -46,7 +46,7 @@ setproctitle(const char *fmt, ...) } #else void -setproctitle(const char *fmt, ...) +setproctitle(__unused const char *fmt, ...) { } #endif diff --git a/osdep-sunos.c b/osdep-sunos.c index 39ec8cd7..07043a9b 100644 --- a/osdep-sunos.c +++ b/osdep-sunos.c @@ -29,7 +29,7 @@ #include "tmux.h" char * -osdep_get_name(int fd, char *tty) +osdep_get_name(__unused int fd, char *tty) { struct psinfo p; struct stat st; |