diff options
author | 2009-07-21 18:52:03 +0000 | |
---|---|---|
committer | 2009-07-21 18:52:03 +0000 | |
commit | c505f71e12db13331297413eaef249bcabff24e9 (patch) | |
tree | b9b277cf2aa409d3f5f3876fa2b752b7e25a3ad7 /usr.bin/tmux/cmd-confirm-before.c | |
parent | Remove a couple of unused functions and fix a type ("FALLTHOUGH"), found by (diff) | |
download | wireguard-openbsd-c505f71e12db13331297413eaef249bcabff24e9.tar.xz wireguard-openbsd-c505f71e12db13331297413eaef249bcabff24e9.zip |
Nix a few unused attributes on arguments which are no longer unused.
Diffstat (limited to 'usr.bin/tmux/cmd-confirm-before.c')
-rw-r--r-- | usr.bin/tmux/cmd-confirm-before.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-confirm-before.c b/usr.bin/tmux/cmd-confirm-before.c index 9f044b653e5..4fe70270bb6 100644 --- a/usr.bin/tmux/cmd-confirm-before.c +++ b/usr.bin/tmux/cmd-confirm-before.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-confirm-before.c,v 1.4 2009/07/17 06:13:27 nicm Exp $ */ +/* $OpenBSD: cmd-confirm-before.c,v 1.5 2009/07/21 18:52:03 nicm Exp $ */ /* * Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org> @@ -68,7 +68,7 @@ cmd_confirm_before_init(struct cmd *self, int key) } int -cmd_confirm_before_exec(unused struct cmd *self, struct cmd_ctx *ctx) +cmd_confirm_before_exec(struct cmd *self, struct cmd_ctx *ctx) { struct cmd_target_data *data = self->data; struct cmd_confirm_before_data *cdata; |