From 8685961eeda266d73f2c95beebeab0ba3614c997 Mon Sep 17 00:00:00 2001 From: mxve <68632137+mxve@users.noreply.github.com> Date: Sat, 28 Oct 2023 19:38:53 +0200 Subject: [PATCH] clippy --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index e695296..b386e4c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -239,7 +239,7 @@ fn update_dir( "[{}] Downloading outdated or missing files for {}, {}", "Info".bright_magenta(), remote_dir, - misc::human_readable_bytes(total_download_size(&files_to_download, &remote_dir)) + misc::human_readable_bytes(total_download_size(&files_to_download, remote_dir)) ); for file in files_to_download { let file_name = &file.name.replace(&format!("{}/", remote_dir), "/");