From 0c66d1534590374d7bb5890a8d1a0f6dc9c97852 Mon Sep 17 00:00:00 2001 From: Ben S Date: Thu, 21 May 2015 16:09:26 +0100 Subject: [PATCH] Minuscule code cleanup --- src/options.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, } }