aboutsummaryrefslogtreecommitdiff
path: root/src/update/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/update/mod.rs')
-rw-r--r--src/update/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/update/mod.rs b/src/update/mod.rs
index 609b35e..d2d6494 100644
--- a/src/update/mod.rs
+++ b/src/update/mod.rs
@@ -7,7 +7,7 @@ use crate::repo::{Repo, RepoError, Repos};
impl crate::GTree {
pub fn update(&self, repos: Repos) {
- for (name, repo) in repos {
+ for (_name, repo) in repos {
let mut repo = repo.write().unwrap();
if repo.repo.is_some() {