From b7b72cca9df9c9c3601e88ac1381802ac83014ee Mon Sep 17 00:00:00 2001 From: Dusan Durech Date: Wed, 22 Apr 2009 20:03:05 +0200 Subject: rename macro UNSET on UNSED --- src/modules/modMove.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/modules/modMove.c') 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) -- cgit v1.2.3