diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-10-30 09:13:02 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-10-30 17:37:56 -0700 |
| commit | 6fcba8826fd26028341a35d88b07208378ac05ea (patch) | |
| tree | c72f2a907d7fc13d914e31dcc0b4dc6527d1f262 /src/libnative | |
| parent | c10c1633772aae3075f1d24c7741a074ddde5527 (diff) | |
| download | rust-6fcba8826fd26028341a35d88b07208378ac05ea.tar.gz rust-6fcba8826fd26028341a35d88b07208378ac05ea.zip | |
Test fixes and rebase conflicts
Diffstat (limited to 'src/libnative')
| -rw-r--r-- | src/libnative/io/timer_windows.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libnative/io/timer_windows.rs b/src/libnative/io/timer_windows.rs index 421cc28e157..c17c541fc01 100644 --- a/src/libnative/io/timer_windows.rs +++ b/src/libnative/io/timer_windows.rs @@ -79,7 +79,7 @@ fn helper(input: libc::HANDLE, messages: Receiver<Req>, _: ()) { } } else { let remove = { - match chans.get_mut(idx as uint - 1) { + match &mut chans[idx as uint - 1] { &(ref mut c, oneshot) => { c.call(); oneshot } } }; |
