summaryrefslogtreecommitdiff
path: root/src/modules/modPipe.c
diff options
context:
space:
mode:
authorDusan Durech <dusan@debian.debian>2009-04-22 19:54:52 +0200
committerDusan Durech <dusan@debian.debian>2009-04-22 19:54:52 +0200
commit31941d9f3b2a665317503166785a3eb6cef35a9c (patch)
treec0740c7c14689593ff405d62f3111f9c326cc2d0 /src/modules/modPipe.c
parentf760a8c01827d97affff6acc0ec666b30e26395f (diff)
fix _all_ warnings // used macro UNUSET
Diffstat (limited to 'src/modules/modPipe.c')
-rw-r--r--src/modules/modPipe.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/modules/modPipe.c b/src/modules/modPipe.c
index 1759fc5..19c840d 100644
--- a/src/modules/modPipe.c
+++ b/src/modules/modPipe.c
@@ -221,6 +221,9 @@ int init(export_fce_t * p)
static void action_drawpipe(space_t * space, pipe_t * pipe, void *p)
{
+ UNUSET(space);
+ UNUSET(p);
+
drawPipe(pipe);
}
@@ -296,6 +299,8 @@ static void action_eventpipe(space_t * space, pipe_t * pipe, shot_t * shot)
arena_t *arena;
tux_t *author;
+ UNUSET(space);
+
arena = export_fce->fce_arena_get_current();
author = space_get_object_id(arena->spaceTux, shot->author_id);
@@ -365,7 +370,7 @@ void cmdArena(char *line)
void recvMsg(char *msg)
{
-
+ UNUSET(msg);
}
int destroy()