summaryrefslogtreecommitdiff
path: root/Seek.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Seek.hs')
-rw-r--r--Seek.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Seek.hs b/Seek.hs
index a4e9a2fe5..4b3281a56 100644
--- a/Seek.hs
+++ b/Seek.hs
@@ -165,7 +165,7 @@ prepFiltered a fs = do
matcher <- Limit.getMatcher
map (process matcher) <$> fs
where
- process matcher f = ifM (matcher $ FileInfo f f)
+ process matcher f = ifM (matcher $ MatchingFile $ FileInfo f f)
( a f , return Nothing )
notSymlink :: FilePath -> IO Bool