native: Be more stringent about pattern matching

Trying to avoid a wildcard where possible.
This commit is contained in:
Alex Crichton 2014-04-14 07:05:37 -07:00
parent c836ff4621
commit 4ca7abb1c4

@ -182,7 +182,7 @@ fn helper(input: libc::c_int, messages: Receiver<Req>) {
let t = active.remove(i).unwrap();
ack.send(t);
}
_ => break
Err(..) => break
}
}