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/base/server.c | |
| parent | 31941d9f3b2a665317503166785a3eb6cef35a9c (diff) | |
rename macro UNSET on UNSED
Diffstat (limited to 'src/base/server.c')
| -rw-r--r-- | src/base/server.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/base/server.c b/src/base/server.c index 6eeab70..472d71c 100644 --- a/src/base/server.c +++ b/src/base/server.c @@ -162,7 +162,7 @@ static void delZombieCLient(void *p_nothink) my_time_t currentTime; int i; - UNUSET(p_nothink); + UNUSED(p_nothink); currentTime = timer_get_current_time(); @@ -192,7 +192,7 @@ static void eventPeriodicSyncClient(void *p_nothink) tux_t *thisTux; int i; - UNUSET(p_nothink); + UNUSED(p_nothink); #ifndef PUBLIC_SERVER proto_send_newtux_server(PROTO_SEND_ALL_SEES_TUX, NULL, world_get_control_tux(TUX_CONTROL_KEYBOARD_RIGHT)); @@ -213,7 +213,7 @@ static void eventPeriodicSyncClient(void *p_nothink) static void eventSendPingClients(void *p_nothink) { - UNUSET(p_nothink); + UNUSED(p_nothink); proto_send_ping_server(PROTO_SEND_ALL, NULL); } |