summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/npc.c')
-rw-r--r--src/map/npc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index 622d67ec1..0c04cfb73 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -532,7 +532,7 @@ int npc_timerevent_stop(struct npc_data* nd)
return 0;
td = get_timer(*tid);
if (td && td->data)
- ers_free(timer_event_ers, (struct event_timer_data*)td->data);
+ ers_free(timer_event_ers, (void*)td->data);
delete_timer(*tid,npc_timerevent);
*tid = -1;
//Set the timer tick to the time that has passed since the beginning of the timers and now.
@@ -1316,7 +1316,7 @@ int npc_unload(struct npc_data* nd)
struct TimerData *td = NULL;
td = get_timer(nd->u.scr.timerid);
if (td && td->data)
- ers_free(timer_event_ers, (struct event_timer_data*)td->data);
+ ers_free(timer_event_ers, (void*)td->data);
delete_timer(nd->u.scr.timerid, npc_timerevent);
}
if (nd->u.scr.timer_event)