summaryrefslogtreecommitdiff
path: root/src/base/proto.c
diff options
context:
space:
mode:
authorDusan Durech <dusan@debian.debian>2009-04-22 20:03:05 +0200
committerDusan Durech <dusan@debian.debian>2009-04-22 20:03:05 +0200
commitb7b72cca9df9c9c3601e88ac1381802ac83014ee (patch)
treea7805d76cc8fa90c37db4982c896f8060e7031f6 /src/base/proto.c
parent31941d9f3b2a665317503166785a3eb6cef35a9c (diff)
rename macro UNSET on UNSED
Diffstat (limited to 'src/base/proto.c')
-rw-r--r--src/base/proto.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/base/proto.c b/src/base/proto.c
index b1a6799..f4a1972 100644
--- a/src/base/proto.c
+++ b/src/base/proto.c
@@ -100,7 +100,7 @@ void proto_send_hello_client(char *name)
static void action_sendItem(space_t * space, item_t * item, client_t * client)
{
- UNUSET(space);
+ UNUSED(space);
proto_send_additem_server(PROTO_SEND_ONE, client, item);
}
@@ -244,7 +244,7 @@ void proto_send_status_server(int type, client_t * client)
void proto_recv_status_server(client_t * client, char *msg)
{
- UNUSET(msg);
+ UNUSED(msg);
proto_send_status_server(PROTO_SEND_ONE, client);
}
@@ -882,7 +882,7 @@ void proto_send_module_client(char *msg)
void proto_recv_module_server(client_t * client, char *msg)
{
- UNUSET(client);
+ UNUSED(client);
module_recv_msg(msg + 7);
}
@@ -923,8 +923,8 @@ void proto_send_ping_client()
void proto_recv_ping_server(client_t * client, char *msg)
{
- UNUSET(client);
- UNUSET(msg);
+ UNUSED(client);
+ UNUSED(msg);
}
void proto_send_ping_server(int type, client_t * client)
@@ -939,7 +939,7 @@ void proto_send_ping_server(int type, client_t * client)
void proto_recv_ping_client(char *msg)
{
- UNUSET(msg);
+ UNUSED(msg);
}
#endif