diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-08-15 14:18:13 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-08-27 20:46:43 -0700 |
| commit | b89e1c000e133fb5db3ea5afd0948db6dc088977 (patch) | |
| tree | 6bd105ae723233519d985e61bdef09f4b0e13603 /src/libstd/rt/uv/timer.rs | |
| parent | ed204257a0c6abc8386879bb631471ec17d8a96a (diff) | |
| download | rust-b89e1c000e133fb5db3ea5afd0948db6dc088977.tar.gz rust-b89e1c000e133fb5db3ea5afd0948db6dc088977.zip | |
Implement process bindings to libuv
Closes #6436
Diffstat (limited to 'src/libstd/rt/uv/timer.rs')
| -rw-r--r-- | src/libstd/rt/uv/timer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rt/uv/timer.rs b/src/libstd/rt/uv/timer.rs index eaa5e77a6da..7b09cf2eb0e 100644 --- a/src/libstd/rt/uv/timer.rs +++ b/src/libstd/rt/uv/timer.rs @@ -43,7 +43,7 @@ impl TimerWatcher { let mut watcher: TimerWatcher = NativeHandle::from_native_handle(handle); let data = watcher.get_watcher_data(); let cb = data.timer_cb.get_ref(); - let status = status_to_maybe_uv_error(watcher, status); + let status = status_to_maybe_uv_error(status); (*cb)(watcher, status); } } |
