summaryrefslogtreecommitdiffstats
path: root/src/options.rs
diff options
context:
space:
mode:
authorBen S <ogham@bsago.me>2015-05-21 16:09:26 +0100
committerBen S <ogham@bsago.me>2015-05-21 16:09:26 +0100
commit0c66d1534590374d7bb5890a8d1a0f6dc9c97852 (patch)
tree7881d774f6a0856b269a8286c866677868aa754d /src/options.rs
parent31ce5b27abd911b801e0fd0a46b3e74d4d188207 (diff)
Minuscule code cleanup
Diffstat (limited to 'src/options.rs')
-rw-r--r--src/options.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/options.rs b/src/options.rs
index 00feec3..d1619a9 100644
--- a/src/options.rs
+++ b/src/options.rs
@@ -482,7 +482,7 @@ impl DirAction {
pub fn is_tree(&self) -> bool {
match *self {
- DirAction::Recurse(RecurseOptions { max_depth: _, tree }) => tree,
+ DirAction::Recurse(RecurseOptions { tree, .. }) => tree,
_ => false,
}
}