summaryrefslogtreecommitdiff
path: root/src/modules/modMove.c
diff options
context:
space:
mode:
authorDusan Durech <dusan@debian.debian>2009-04-22 19:54:52 +0200
committerDusan Durech <dusan@debian.debian>2009-04-22 19:54:52 +0200
commit31941d9f3b2a665317503166785a3eb6cef35a9c (patch)
treec0740c7c14689593ff405d62f3111f9c326cc2d0 /src/modules/modMove.c
parentf760a8c01827d97affff6acc0ec666b30e26395f (diff)
fix _all_ warnings // used macro UNUSET
Diffstat (limited to 'src/modules/modMove.c')
-rw-r--r--src/modules/modMove.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/modules/modMove.c b/src/modules/modMove.c
index 552e6bd..231a827 100644
--- a/src/modules/modMove.c
+++ b/src/modules/modMove.c
@@ -226,6 +226,11 @@ static void proto_moveshot(char *msg)
int draw(int x, int y, int w, int h)
{
+ UNUSET(x);
+ UNUSET(y);
+ UNUSET(w);
+ UNUSET(h);
+
return 0;
}
@@ -238,11 +243,17 @@ int event()
int isConflict(int x, int y, int w, int h)
{
+ UNUSET(x);
+ UNUSET(y);
+ UNUSET(w);
+ UNUSET(h);
+
return 0;
}
void cmdArena(char *line)
{
+ UNUSET(line);
}
void recvMsg(char *msg)