Skip to content

Commit

Permalink
Fix must_use warning caused by a missing error! macro
Browse files Browse the repository at this point in the history
  • Loading branch information
WaviestBalloon committed Oct 22, 2024
1 parent 4a8e7ab commit 085fe09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/args/purge.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ pub fn main(args: Vec<Vec<(String, String)>>) {
success!("Removed Roblox directory");
},
Err(errmsg) => {
format!("Failed to remove the Roblox directory!\nError: {}", errmsg);
error!("Failed to remove the Roblox directory!\nError: {}", errmsg);
process::exit(1);
}
}
Expand Down

0 comments on commit 085fe09

Please sign in to comment.