diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-07-22 17:38:11 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-07-22 17:38:11 +0000 |
commit | 0237e1dafdfd94f8526a73ad02f5ed88e24c4c18 (patch) | |
tree | f6bff78ab4720391e0dc59038972cbe1724d703a /client-msg.c | |
parent | a92993228f855a1cda2dae58b7706788c62b7ae1 (diff) | |
download | rtmux-0237e1dafdfd94f8526a73ad02f5ed88e24c4c18.tar.gz rtmux-0237e1dafdfd94f8526a73ad02f5ed88e24c4c18.tar.bz2 rtmux-0237e1dafdfd94f8526a73ad02f5ed88e24c4c18.zip |
Sync OpenBSD patchset 154:
Nix a few unused attributes on arguments which are no longer unused.
Diffstat (limited to 'client-msg.c')
-rw-r--r-- | client-msg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client-msg.c b/client-msg.c index 14600421..dbedf563 100644 --- a/client-msg.c +++ b/client-msg.c @@ -1,4 +1,4 @@ -/* $Id: client-msg.c,v 1.19 2009-06-25 15:25:45 nicm Exp $ */ +/* $Id: client-msg.c,v 1.20 2009-07-22 17:38:11 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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"); |