diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-01-07 20:06:37 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-01-07 20:08:37 -0800 |
| commit | 0abf4583486071a958aa1bd14ab8c5b8870fb74d (patch) | |
| tree | 7593bacffb7c8111eee7fa2a0a05d0357ccba763 /src/libstd/sys | |
| parent | ef46caebcc2466c54d691dbc801e0b4a431f3ff3 (diff) | |
| download | rust-0abf4583486071a958aa1bd14ab8c5b8870fb74d.tar.gz rust-0abf4583486071a958aa1bd14ab8c5b8870fb74d.zip | |
More test fixes and rebase conflicts
Diffstat (limited to 'src/libstd/sys')
| -rw-r--r-- | src/libstd/sys/windows/timer.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/windows/timer.rs b/src/libstd/sys/windows/timer.rs index 343b78543bf..1ae3979cd9a 100644 --- a/src/libstd/sys/windows/timer.rs +++ b/src/libstd/sys/windows/timer.rs @@ -91,7 +91,7 @@ fn helper(input: libc::HANDLE, messages: Receiver<Req>, _: ()) { } else { let remove = { match &mut chans[idx as uint - 1] { - &(ref mut c, oneshot) => { c.call(); oneshot } + &mut (ref mut c, oneshot) => { c.call(); oneshot } } }; if remove { |
