=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/proc.c,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- src/usr.bin/tmux/proc.c 2015/10/31 13:43:38 1.3 +++ src/usr.bin/tmux/proc.c 2015/11/18 14:27:44 1.4 @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.c,v 1.3 2015/10/31 13:43:38 nicm Exp $ */ +/* $OpenBSD: proc.c,v 1.4 2015/11/18 14:27:44 nicm Exp $ */ /* * Copyright (c) 2015 Nicholas Marriott @@ -53,7 +53,7 @@ static void proc_update_event(struct tmuxpeer *); static void -proc_event_cb(unused int fd, short events, void *arg) +proc_event_cb(__unused int fd, short events, void *arg) { struct tmuxpeer *peer = arg; ssize_t n; @@ -101,7 +101,7 @@ } static void -proc_signal_cb(int signo, unused short events, void *arg) +proc_signal_cb(int signo, __unused short events, void *arg) { struct tmuxproc *tp = arg;