From ce80dd0442bb7853fe645bfd2bf2c60c18f6cbfc Mon Sep 17 00:00:00 2001 From: kouta Date: Thu, 11 Jul 2024 19:39:55 -0300 Subject: [PATCH] Fix linting issues --- agb-image-converter/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/agb-image-converter/src/lib.rs b/agb-image-converter/src/lib.rs index 411b29c7..0c31b95a 100644 --- a/agb-image-converter/src/lib.rs +++ b/agb-image-converter/src/lib.rs @@ -197,7 +197,7 @@ pub fn include_background_gfx(input: TokenStream) -> TokenStream { let root = std::env::var("CARGO_MANIFEST_DIR").expect("Failed to get cargo manifest dir"); let module_name = config.module_name.clone(); - let as_pub = config.as_pub.clone(); + let as_pub = config.as_pub; include_gfx_from_config(config, as_pub, module_name, Path::new(&root)) }