From 3c43675fb1ba3b42a2cd7ce07efb69c211422475 Mon Sep 17 00:00:00 2001 From: Brooks J Rady Date: Wed, 25 Nov 2020 21:39:18 +0000 Subject: [PATCH] Got roasted by cargo fmt --- src/main.rs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 +}