=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/tmux/format.c,v retrieving revision 1.98 retrieving revision 1.99 diff -c -r1.98 -r1.99 *** src/usr.bin/tmux/format.c 2015/11/18 14:13:55 1.98 --- src/usr.bin/tmux/format.c 2015/11/18 14:27:44 1.99 *************** *** 1,4 **** ! /* $OpenBSD: format.c,v 1.98 2015/11/18 14:13:55 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott --- 1,4 ---- ! /* $OpenBSD: format.c,v 1.99 2015/11/18 14:27:44 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott *************** *** 259,265 **** /* Remove old jobs. */ void ! format_job_timer(unused int fd, unused short events, unused void *arg) { struct format_job *fj, *fj1; time_t now; --- 259,265 ---- /* Remove old jobs. */ void ! format_job_timer(__unused int fd, __unused short events, __unused void *arg) { struct format_job *fj, *fj1; time_t now; *************** *** 288,294 **** /* Callback for host. */ void ! format_cb_host(unused struct format_tree *ft, struct format_entry *fe) { char host[HOST_NAME_MAX + 1]; --- 288,294 ---- /* Callback for host. */ void ! format_cb_host(__unused struct format_tree *ft, struct format_entry *fe) { char host[HOST_NAME_MAX + 1]; *************** *** 300,306 **** /* Callback for host_short. */ void ! format_cb_host_short(unused struct format_tree *ft, struct format_entry *fe) { char host[HOST_NAME_MAX + 1], *cp; --- 300,306 ---- /* Callback for host_short. */ void ! format_cb_host_short(__unused struct format_tree *ft, struct format_entry *fe) { char host[HOST_NAME_MAX + 1], *cp; *************** *** 315,321 **** /* Callback for pid. */ void ! format_cb_pid(unused struct format_tree *ft, struct format_entry *fe) { xasprintf(&fe->value, "%ld", (long)getpid()); } --- 315,321 ---- /* Callback for pid. */ void ! format_cb_pid(__unused struct format_tree *ft, struct format_entry *fe) { xasprintf(&fe->value, "%ld", (long)getpid()); }