Corrections by clippy

Signed-off-by: Valentin Popov <valentin@popov.link>
This commit is contained in:
Valentin Popov 2024-01-08 01:10:53 +04:00
parent 4c3185ea7c
commit 5ecd8cf2cb
Signed by: Valentin Popov
GPG Key ID: AE3CE523DAAA8401

View File

@ -35,7 +35,7 @@ fn main() {
let input = &args[1];
let output = &args[2];
if let Err(err) = decode_texture(&input, &output) {
if let Err(err) = decode_texture(input, output) {
eprintln!("Error: {}", err)
}
}