Got roasted by cargo fmt

This commit is contained in:
Brooks J Rady 2020-11-25 21:39:18 +00:00
parent aea41d3d50
commit 3c43675fb1

View file

@ -275,7 +275,7 @@ pub fn start(mut os_input: Box<dyn OsApi>, opts: Opt) {
let module = if let Ok(m) = Module::from_file(&store, "strider.wasm") { let module = if let Ok(m) = Module::from_file(&store, "strider.wasm") {
m m
} else { } else {
return Ok(()) // Just abort this thread quietly if the WASM isn't found return Ok(()); // Just abort this thread quietly if the WASM isn't found
}; };
// FIXME: Upstream the `Pipe` struct // FIXME: Upstream the `Pipe` struct
@ -353,7 +353,8 @@ pub fn start(mut os_input: Box<dyn OsApi>, opts: Opt) {
} }
debug_log_to_file("WASM module loaded and exited cleanly :)".to_string())?; debug_log_to_file("WASM module loaded and exited cleanly :)".to_string())?;
Ok(()) Ok(())
}().unwrap() }()
.unwrap()
}) })
.unwrap(), .unwrap(),
); );