forgot a =

This commit is contained in:
Rick Richardson 2016-11-20 11:55:57 -08:00
parent 161811de8b
commit ab3915d47d

View File

@ -108,7 +108,7 @@ fn main() {
//Now we instruct `reactor::Core` to iterate, processing events until its future, `SelectAll`
//has completed
if let Err(e) core.run(wait) {
if let Err(e) = core.run(wait) {
error!("{}", e.0);
}
}