From c12e0b0708ee1aa16608eff9d0ad3f0628cbac0f Mon Sep 17 00:00:00 2001 From: Tiago Cunha Date: Sat, 28 Nov 2009 14:50:37 +0000 Subject: Sync OpenBSD patchset 567: Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to the rest to reduce lint output. --- tmux.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tmux.c') diff --git a/tmux.c b/tmux.c index 84a253cb..ae58f676 100644 --- a/tmux.c +++ b/tmux.c @@ -1,4 +1,4 @@ -/* $Id: tmux.c,v 1.191 2009-11-19 22:35:10 tcunha Exp $ */ +/* $Id: tmux.c,v 1.192 2009-11-28 14:50:37 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -571,6 +571,7 @@ main_clear_signals(void) event_del(&main_ev_sigterm); } +/* ARGSUSED */ void main_signal(int sig, unused short events, unused void *data) { @@ -580,6 +581,7 @@ main_signal(int sig, unused short events, unused void *data) } } +/* ARGSUSED */ void main_callback(unused int fd, short events, void *data) { -- cgit