From 94d6e2e96926b5abed33c1a7ed9438b2340d6185 Mon Sep 17 00:00:00 2001 From: CheerfulPianissimo Date: Tue, 19 Mar 2024 10:43:25 +0530 Subject: [PATCH] style(format): code formatting to wayshot.rs --- wayshot/src/wayshot.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wayshot/src/wayshot.rs b/wayshot/src/wayshot.rs index b17c0b52..9fac733b 100644 --- a/wayshot/src/wayshot.rs +++ b/wayshot/src/wayshot.rs @@ -139,7 +139,7 @@ fn main() -> Result<()> { match unsafe { fork() } { // Having the image persistently available on the clipboard requires a wayshot process to be alive. // Fork the process with a child detached from the main process and have the parent exit - Ok(ForkResult::Parent{..}) => { + Ok(ForkResult::Parent { .. }) => { return Ok(()); } Ok(ForkResult::Child) => {