diff options
| author | Brian Anderson <banderson@mozilla.com> | 2013-05-17 17:53:50 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2013-05-17 17:53:50 -0700 |
| commit | 03a8e59615f7ced4def8adaad41cfcb0fd0f9d29 (patch) | |
| tree | 560956d27a7945a464d8d8ec742be4ea5fbecb69 /src/rt/rust_uv.cpp | |
| parent | 2d28d645422c1617be58c8ca7ad9a457264ca850 (diff) | |
| parent | 018dfaf9a6a25f5dba0ac642ff6c426c549bc4d7 (diff) | |
| download | rust-03a8e59615f7ced4def8adaad41cfcb0fd0f9d29.tar.gz rust-03a8e59615f7ced4def8adaad41cfcb0fd0f9d29.zip | |
Merge remote-tracking branch 'brson/io' into incoming
Diffstat (limited to 'src/rt/rust_uv.cpp')
| -rw-r--r-- | src/rt/rust_uv.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rt/rust_uv.cpp b/src/rt/rust_uv.cpp index 8cf2bd4b4ac..fefcbbcacf7 100644 --- a/src/rt/rust_uv.cpp +++ b/src/rt/rust_uv.cpp @@ -229,7 +229,7 @@ rust_uv_timer_init(uv_loop_t* loop, uv_timer_t* timer) { extern "C" int rust_uv_timer_start(uv_timer_t* the_timer, uv_timer_cb cb, - uint32_t timeout, uint32_t repeat) { + int64_t timeout, int64_t repeat) { return uv_timer_start(the_timer, cb, timeout, repeat); } |
