fix clippy issues

This commit is contained in:
Chris
2025-07-15 18:50:11 -06:00
parent 4456151aa5
commit e217080de6

View File

@ -57,8 +57,8 @@ fn write_error(msg: &str) -> Result<(), Box<dyn std::error::Error>> {
.create(true)
.open(&file_path)?;
eprintln!("Bootstrapper Error MinEdLauncher.exe: {}", msg);
writeln!(&mut file, "Bootstrapper Error MinEdLauncher.exe: {}", msg)
eprintln!("Bootstrapper Error MinEdLauncher.exe: {msg}");
writeln!(&mut file, "Bootstrapper Error MinEdLauncher.exe: {msg}")
});
if let Err(e) = write {