use println for clippy

Signed-off-by: Anton-4 <17049058+Anton-4@users.noreply.github.com>
This commit is contained in:
Anton-4 2024-03-09 16:26:52 +01:00 committed by GitHub
parent ee819cb7d1
commit 0486da933f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -687,7 +687,7 @@ pub fn handle_loading_problem(problem: LoadingProblem) -> std::io::Result<i32> {
_ => { _ => {
// TODO: tighten up the types here, we should always end up with a // TODO: tighten up the types here, we should always end up with a
// formatted report from load. // formatted report from load.
print!("Failed with error: {problem:?}\n"); println!("Failed with error: {problem:?}");
Ok(1) Ok(1)
} }
} }