1
0
Fork 0
mirror of https://git.sr.ht/~spicywolf/k2spice synced 2025-01-18 17:59:39 +00:00

run clippy

This commit is contained in:
Ren Kararou 2023-11-29 09:07:36 -06:00
parent 6a8f7dce84
commit a8bbbf06a4
Signed by: spicywolf
GPG key ID: B0BA4EEC0714F8E6
2 changed files with 2 additions and 2 deletions

View file

@ -28,5 +28,5 @@
use std::process::ExitCode; use std::process::ExitCode;
fn main() -> ExitCode { fn main() -> ExitCode {
return ExitCode::FAILURE; ExitCode::FAILURE
} }

View file

@ -29,5 +29,5 @@
use std::process::ExitCode; use std::process::ExitCode;
fn main() -> ExitCode { fn main() -> ExitCode {
return ExitCode::SUCCESS; ExitCode::SUCCESS
} }