aboutsummaryrefslogtreecommitdiff
path: root/client-msg.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-07-21 18:52:03 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-07-21 18:52:03 +0000
commit6945e86fd7540c610f7e58e4a964fed384048823 (patch)
treeee45188a8dc67fbf2798b880b5cbd4383226c578 /client-msg.c
parent044ebf195237c2c5ea13df5f1f93d61eaacf9d7b (diff)
downloadrtmux-6945e86fd7540c610f7e58e4a964fed384048823.tar.gz
rtmux-6945e86fd7540c610f7e58e4a964fed384048823.tar.bz2
rtmux-6945e86fd7540c610f7e58e4a964fed384048823.zip
Nix a few unused attributes on arguments which are no longer unused.
Diffstat (limited to 'client-msg.c')
-rw-r--r--client-msg.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/client-msg.c b/client-msg.c
index 2e2a6b49..7d7166ca 100644
--- a/client-msg.c
+++ b/client-msg.c
@@ -85,7 +85,7 @@ client_msg_fn_error(struct hdr *hdr, struct client_ctx *cctx, char **error)
int
client_msg_fn_detach(
- struct hdr *hdr, unused struct client_ctx *cctx, unused char **error)
+ struct hdr *hdr, struct client_ctx *cctx, unused char **error)
{
if (hdr->size != 0)
fatalx("bad MSG_DETACH size");
@@ -98,7 +98,7 @@ client_msg_fn_detach(
int
client_msg_fn_shutdown(
- struct hdr *hdr, unused struct client_ctx *cctx, unused char **error)
+ struct hdr *hdr, struct client_ctx *cctx, unused char **error)
{
if (hdr->size != 0)
fatalx("bad MSG_SHUTDOWN size");
@@ -111,7 +111,7 @@ client_msg_fn_shutdown(
int
client_msg_fn_exit(
- struct hdr *hdr, unused struct client_ctx *cctx, unused char **error)
+ struct hdr *hdr, struct client_ctx *cctx, unused char **error)
{
if (hdr->size != 0)
fatalx("bad MSG_EXIT size");