Add newline after "Failed with error" msg

This commit is contained in:
Hristo Georgiev 2024-03-09 12:54:08 +00:00
parent 09b40a1cc3
commit ee819cb7d1
No known key found for this signature in database
GPG Key ID: B45BF9E8C094512F

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
// formatted report from load.
print!("Failed with error: {problem:?}");
print!("Failed with error: {problem:?}\n");
Ok(1)
}
}