diff --git a/src/main.rs b/src/main.rs index cf175779..105f3863 100644 --- a/src/main.rs +++ b/src/main.rs @@ -275,7 +275,7 @@ pub fn start(mut os_input: Box, 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, 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, opts: Opt) { .write(goodbye_message.as_bytes()) .unwrap(); os_input.get_stdout_writer().flush().unwrap(); -} \ No newline at end of file +}