mirror of
https://github.com/servo/servo.git
synced 2025-06-12 18:34:39 +00:00
Fix renamed to into_inner()
warnings
This commit is contained in:
parent
fc49e10f7e
commit
b7a704b416
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ pub fn spawn_named_with_send_on_failure<T: Send>(name: &'static str,
|
|||
let watcher_name = format!("{}Watcher", watched_name);
|
||||
TaskBuilder::new().named(watcher_name).spawn(proc() {
|
||||
//rtinstrument::instrument(proc() {
|
||||
match future_result.unwrap() {
|
||||
match future_result.into_inner() {
|
||||
Ok(()) => (),
|
||||
Err(..) => {
|
||||
debug!("{} failed, notifying constellation", name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue