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") {
m
} 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
@ -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())?;
Ok(())
}().unwrap()
}()
.unwrap()
})
.unwrap(),
);
@ -463,4 +464,4 @@ pub fn start(mut os_input: Box<dyn OsApi>, opts: Opt) {
.write(goodbye_message.as_bytes())
.unwrap();
os_input.get_stdout_writer().flush().unwrap();
}
}