From dc0b7364b51af680d866f6a7267da0e85eef07ec Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 14 Oct 2011 14:43:49 +0000 Subject: [PATCH] node: fix arguments to uv_timer_start() --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index 66da890e96b..c853c86bded 100644 --- a/src/node.cc +++ b/src/node.cc @@ -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); } }