Browse Source

node: fix arguments to uv_timer_start()

v0.7.4-release
Ben Noordhuis 13 years ago
parent
commit
dc0b7364b5
  1. 2
      src/node.cc

2
src/node.cc

@ -175,7 +175,7 @@ static void CheckStatus(uv_timer_t* watcher, int status);
static void StartGCTimer () { static void StartGCTimer () {
if (!uv_is_active((uv_handle_t*) &gc_timer)) { 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);
} }
} }

Loading…
Cancel
Save