From c3eac4f05b066806010e095d445fb204671845c8 Mon Sep 17 00:00:00 2001 From: Ismo Puustinen Date: Fri, 5 May 2023 09:41:05 +0300 Subject: [PATCH] Rustfmt fix. Signed-off-by: Ismo Puustinen --- test/wasi-modules-for-testing/src/hello_world.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/wasi-modules-for-testing/src/hello_world.rs b/test/wasi-modules-for-testing/src/hello_world.rs index 60b0c22f3..003415923 100644 --- a/test/wasi-modules-for-testing/src/hello_world.rs +++ b/test/wasi-modules-for-testing/src/hello_world.rs @@ -3,5 +3,8 @@ fn main() { // test seccomp with. let cwd = std::env::current_dir().unwrap(); - println!("hello world, current working dir: {}", cwd.to_string_lossy()); + println!( + "hello world, current working dir: {}", + cwd.to_string_lossy() + ); }