Skip to content

Commit

Permalink
style(format): code formatting to wayshot.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
CheerfulPianissimo committed Mar 19, 2024
1 parent c2a1290 commit 94d6e2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wayshot/src/wayshot.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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) => {
Expand Down

0 comments on commit 94d6e2e

Please sign in to comment.