From 5ecd8cf2cba827454317368b68571df0d13d7842 Mon Sep 17 00:00:00 2001
From: Valentin Popov <valentin@popov.link>
Date: Mon, 8 Jan 2024 01:10:53 +0400
Subject: Corrections by clippy

Signed-off-by: Valentin Popov <valentin@popov.link>
---
 texture-decoder/src/main.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'texture-decoder')

diff --git a/texture-decoder/src/main.rs b/texture-decoder/src/main.rs
index d12d71a..26c7edd 100644
--- a/texture-decoder/src/main.rs
+++ b/texture-decoder/src/main.rs
@@ -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)
     }
 }
-- 
cgit v1.2.3