From 31941d9f3b2a665317503166785a3eb6cef35a9c Mon Sep 17 00:00:00 2001 From: Dusan Durech Date: Wed, 22 Apr 2009 19:54:52 +0200 Subject: fix _all_ warnings // used macro UNUSET --- src/modules/modMove.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'src/modules/modMove.c') 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) -- cgit v1.2.3