diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-26 21:37:14 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-11-26 21:37:14 +0000 |
commit | e74df4cfa4b067f5abc2b65af1d49c951cbf7f05 (patch) | |
tree | c78fc50c57f5e5a4503857817ad4ce7b7859ac2f /usr.bin/tmux/cfg.c | |
parent | f1d883ed899181343afc25b33819d94b452d91ab (diff) |
Remove a couple of unused arguments where possible, and add /* ARGSUSED */ to
the rest to reduce lint output.
Diffstat (limited to 'usr.bin/tmux/cfg.c')
-rw-r--r-- | usr.bin/tmux/cfg.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/tmux/cfg.c b/usr.bin/tmux/cfg.c index f842a82868f..934838b33c8 100644 --- a/usr.bin/tmux/cfg.c +++ b/usr.bin/tmux/cfg.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cfg.c,v 1.7 2009/10/26 21:42:04 deraadt Exp $ */ +/* $OpenBSD: cfg.c,v 1.8 2009/11/26 21:37:13 nicm Exp $ */ /* * Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net> @@ -35,11 +35,13 @@ void printflike2 cfg_error(struct cmd_ctx *, const char *, ...); char *cfg_cause; +/* ARGSUSED */ void printflike2 cfg_print(unused struct cmd_ctx *ctx, unused const char *fmt, ...) { } +/* ARGSUSED */ void printflike2 cfg_error(unused struct cmd_ctx *ctx, const char *fmt, ...) { |