From 1a240133d1968564e84af8e8f62bc8b34ce9e337 Mon Sep 17 00:00:00 2001 From: toms Date: Fri, 1 Sep 2006 23:26:08 +0000 Subject: The "delete_timer error/no such timer" report will now print the related function git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8586 54d463be-8e91-2dee-dedb-b68131a5f0ec --- Changelog-Trunk.txt | 1 + src/common/timer.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 121b2efa5..cc7c55d5c 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2006/09/01 + * The "delete_timer error/no such timer" report will now print the related function [Toms] * The Clearing unused stack report will now print the related NPC [Toms] * The duplicate npc report will now print the related file name [Toms] * Added config setting "partial_name_scan", which specifies whether @ given 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) { -- cgit v1.2.3-70-g09d2