diff options
author | Waqas Hussain <waqas20@gmail.com> | 2013-10-30 17:51:37 -0400 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2013-10-30 17:51:37 -0400 |
commit | 053117d38dcf80f594cc75d9b4f9fc35d400d567 (patch) | |
tree | fdd0370d145c755111d4828f6fdbda085a9c408f /util/timer.lua | |
parent | 495b904d7210537b53736f6fd2330a26527ce89c (diff) | |
download | prosody-053117d38dcf80f594cc75d9b4f9fc35d400d567.tar.gz prosody-053117d38dcf80f594cc75d9b4f9fc35d400d567.zip |
util.timer: Fix variable name typo.
Diffstat (limited to 'util/timer.lua')
-rw-r--r-- | util/timer.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/timer.lua b/util/timer.lua index d7a9b0bf..99aade15 100644 --- a/util/timer.lua +++ b/util/timer.lua @@ -117,7 +117,7 @@ function add_task(delay, callback, param) params[id] = param; if next_time == nil or event_time < next_time then next_time = event_time; - _add_task(next_time - current_time, on_timer); + _add_task(next_time - current_time, _on_timer); end return id; end @@ -131,7 +131,7 @@ function reschedule(id, delay) h:reprioritize(id, delay); if next_time == nil or event_time < next_time then next_time = event_time; - _add_task(next_time - current_time, on_timer); + _add_task(next_time - current_time, _on_timer); end return id; end |