Fix some warnings

This commit is contained in:
Matt Brubeck 2016-05-11 21:03:12 -07:00
parent 641b374f0b
commit d560ae79b4
3 changed files with 9 additions and 9 deletions

View file

@ -512,7 +512,7 @@ impl<Window: WindowMethods> IOCompositor<Window> {
match ipc::channel() {
Ok((sender, receiver)) => {
self.time_profiler_chan.send(time::ProfilerMsg::Exit(sender));
receiver.recv();
let _ = receiver.recv();
},
Err(_) => {},
}