summaryrefslogtreecommitdiff
path: root/src/modules/modMove.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/modules/modMove.c
parent31941d9f3b2a665317503166785a3eb6cef35a9c (diff)
rename macro UNSET on UNSED
Diffstat (limited to 'src/modules/modMove.c')
-rw-r--r--src/modules/modMove.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/modules/modMove.c b/src/modules/modMove.c
index 231a827..fc616a7 100644
--- a/src/modules/modMove.c
+++ b/src/modules/modMove.c
@@ -226,10 +226,10 @@ static void proto_moveshot(char *msg)
int draw(int x, int y, int w, int h)
{
- UNUSET(x);
- UNUSET(y);
- UNUSET(w);
- UNUSET(h);
+ UNUSED(x);
+ UNUSED(y);
+ UNUSED(w);
+ UNUSED(h);
return 0;
}
@@ -243,17 +243,17 @@ int event()
int isConflict(int x, int y, int w, int h)
{
- UNUSET(x);
- UNUSET(y);
- UNUSET(w);
- UNUSET(h);
+ UNUSED(x);
+ UNUSED(y);
+ UNUSED(w);
+ UNUSED(h);
return 0;
}
void cmdArena(char *line)
{
- UNUSET(line);
+ UNUSED(line);
}
void recvMsg(char *msg)