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