summaryrefslogtreecommitdiff
path: root/src/common/timer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/timer.c')
-rw-r--r--src/common/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/timer.c b/src/common/timer.c
index 1e9ff25aa..d8f863059 100644
--- a/src/common/timer.c
+++ b/src/common/timer.c
@@ -263,7 +263,7 @@ int add_timer_interval(unsigned int tick, int (*func)(int,unsigned int,int,int),
int delete_timer(int id, int (*func)(int,unsigned int,int,int))
{
if (id <= 0 || id >= timer_data_num) {
- ShowError("delete_timer error : no such timer %d\n", id);
+ ShowError("delete_timer error : no such timer %d (%08x(%s))\n", id, (int)func, search_timer_func_list(func));
return -1;
}
if (timer_data[id].func != func) {