diff options
Diffstat (limited to 'src/base/shot.c')
| -rw-r--r-- | src/base/shot.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/base/shot.c b/src/base/shot.c index b19877a..564f458 100644 --- a/src/base/shot.c +++ b/src/base/shot.c @@ -262,7 +262,7 @@ static void action_moveShot(space_t * space, shot_t * shot, void *p) int new_x, new_y; arena_t *arena; - UNUSET(p); + UNUSED(p); arena = arena_get_current(); @@ -297,7 +297,7 @@ static int isValueInList(list_t * list, int x) static void action_check(space_t * space, shot_t * shot, client_t * client) { - UNUSET(space); + UNUSED(space); if (isValueInList(client->listSeesShot, shot->id) == 0) { list_add(client->listSeesShot, newInt(shot->id)); |