Fixed some warnings #11

Merged
phoenix merged 13 commits from warning_fixes into devel 2025-03-22 18:24:09 +00:00
Showing only changes of commit e3ec08963d - Show all commits

View File

@@ -224,10 +224,10 @@ mod embedded {
return Ok(buffer);
} else {
return Err(std::io::Error::new(
Err(std::io::Error::new(
std::io::ErrorKind::Other,
"Could not access last character of directory",
));
))
}
}
@@ -249,9 +249,7 @@ mod embedded {
Ok(buffer)
}
}
Err(er) => {
Err(er)
}
Err(er) => Err(er),
}
}
}