summaryrefslogtreecommitdiff
path: root/src/modules/modWall.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/modWall.c
parent31941d9f3b2a665317503166785a3eb6cef35a9c (diff)
rename macro UNSET on UNSED
Diffstat (limited to 'src/modules/modWall.c')
-rw-r--r--src/modules/modWall.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/modules/modWall.c b/src/modules/modWall.c
index 6e9b54f..4facf20 100644
--- a/src/modules/modWall.c
+++ b/src/modules/modWall.c
@@ -157,11 +157,11 @@ static void getStatusImgWall(void *p, int *id, int *x, int *y, int *w, int *h)
static void setStatusImgWall(void *p, int x, int y, int w, int h)
{
- UNUSET(p);
- UNUSET(x);
- UNUSET(y);
- UNUSET(w);
- UNUSET(h);
+ UNUSED(p);
+ UNUSED(x);
+ UNUSED(y);
+ UNUSED(w);
+ UNUSED(h);
}
#endif
@@ -258,8 +258,8 @@ int init(export_fce_t * p)
static void action_drawwall(space_t * space, wall_t * wall, void *p)
{
- UNUSET(space);
- UNUSET(p);
+ UNUSED(space);
+ UNUSED(p);
drawWall(wall);
}
@@ -283,8 +283,8 @@ static void action_eventwall(space_t * space, wall_t * wall, shot_t * shot)
arena_t *arena;
tux_t *author;
- UNUSET(space);
- UNUSET(wall);
+ UNUSED(space);
+ UNUSED(wall);
arena = export_fce->fce_arena_get_current();
@@ -346,7 +346,7 @@ void cmdArena(char *line)
void recvMsg(char *msg)
{
- UNUSET(msg);
+ UNUSED(msg);
}
int destroy()