diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-13 18:10:23 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2004-10-13 18:10:23 +0000 |
commit | 655889c154fdc3016038d6241a0c50978dd12fac (patch) | |
tree | 6108524a847ba8f61486768679eef968532ae692 /src/timeout.c | |
parent | 65ed982a17ae7a3360b14cd459a35d581cf67a38 (diff) |
BUILD : 1.7.5 (394) BUGS : N/A NOTES : More code tidying, added make strict_modules etc, incase module coders what to use it :)
git-svn-id: svn://svn.anope.org/anope/trunk@394 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@259 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/timeout.c')
-rw-r--r-- | src/timeout.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timeout.c b/src/timeout.c index 74f453d99..8f919ec53 100644 --- a/src/timeout.c +++ b/src/timeout.c @@ -61,7 +61,7 @@ void check_timeouts(void) } if (debug >= 4) { alog("debug: Running timeout 0x%p (code=0x%p repeat=%d)", - (void *) to, to->code, to->repeat); + (void *) to, (void *) to->code, to->repeat); } to->code(to); if (to->repeat) { |