diff options
Diffstat (limited to 'src/modules/modPipe.c')
| -rw-r--r-- | src/modules/modPipe.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/modPipe.c b/src/modules/modPipe.c index 19c840d..ee7e10d 100644 --- a/src/modules/modPipe.c +++ b/src/modules/modPipe.c @@ -221,8 +221,8 @@ int init(export_fce_t * p) static void action_drawpipe(space_t * space, pipe_t * pipe, void *p) { - UNUSET(space); - UNUSET(p); + UNUSED(space); + UNUSED(p); drawPipe(pipe); } @@ -299,7 +299,7 @@ static void action_eventpipe(space_t * space, pipe_t * pipe, shot_t * shot) arena_t *arena; tux_t *author; - UNUSET(space); + UNUSED(space); arena = export_fce->fce_arena_get_current(); @@ -370,7 +370,7 @@ void cmdArena(char *line) void recvMsg(char *msg) { - UNUSET(msg); + UNUSED(msg); } int destroy() |