diff options
| author | Dusan Durech <dusan@debian.debian> | 2009-04-22 20:03:05 +0200 |
|---|---|---|
| committer | Dusan Durech <dusan@debian.debian> | 2009-04-22 20:03:05 +0200 |
| commit | b7b72cca9df9c9c3601e88ac1381802ac83014ee (patch) | |
| tree | a7805d76cc8fa90c37db4982c896f8060e7031f6 /src/modules/modPipe.c | |
| parent | 31941d9f3b2a665317503166785a3eb6cef35a9c (diff) | |
rename macro UNSET on UNSED
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() |