fill in todo! in match arm

This commit is contained in:
2025-12-14 04:36:15 +00:00
parent 87d02f1b3d
commit 059678712d

View File

@@ -102,7 +102,7 @@ impl Iterator for Ebuilds {
Ok(ebuild) => break Some(Ok(ebuild)),
Err(e) => break Some(Err(e)),
},
_ => todo!(),
Err(e) => break Some(Err(Error::ReadDir(self.0.clone(), e))),
}
}
}