diff options
| author | Brian Anderson <banderson@mozilla.com> | 2013-05-10 17:07:41 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2013-05-15 12:19:15 -0700 |
| commit | 4724966b0656761da94e24e73b028cd0d3420a7e (patch) | |
| tree | 237ffde01617b5c513df382cfb291ca6bac6595b /src/rt/rust_uv.cpp | |
| parent | 76e097761e0bb11ebe57bd18c13a0c645c655108 (diff) | |
| download | rust-4724966b0656761da94e24e73b028cd0d3420a7e.tar.gz rust-4724966b0656761da94e24e73b028cd0d3420a7e.zip | |
core::rt: Add uv timer bindings
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); } |
