node: fix arguments to uv_timer_start()

pull/22966/head
Ben Noordhuis 2011-10-14 14:43:49 +00:00
parent f1d3ae7753
commit dc0b7364b5
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ static void CheckStatus(uv_timer_t* watcher, int status);
static void StartGCTimer () {
if (!uv_is_active((uv_handle_t*) &gc_timer)) {
uv_timer_start(&node::gc_timer, node::CheckStatus, 5000., 5000.);
uv_timer_start(&node::gc_timer, node::CheckStatus, 5000, 5000);
}
}