Use unused result

This commit is contained in:
Matthias Beyer 2016-04-16 22:46:29 +02:00
parent e8c682fc28
commit a7c1cc0d6f

View file

@ -81,7 +81,9 @@ fn handle_internal_linking(rt: &Runtime) {
println!("{: <3}: {}", i, link); println!("{: <3}: {}", i, link);
i += 1; i += 1;
} }
}); })
.map_err(|e| trace_error(&e))
.ok();
}, },
Err(e) => { Err(e) => {