diff options
author | Joey Hess <joey@kitenet.net> | 2012-07-17 18:35:56 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-07-17 18:35:56 -0400 |
commit | 62a35162a0988f8d6e51796debceafda4d35c061 (patch) | |
tree | 540a4ad5700d555c5e16cda8a23c8e8c4aa3115e /Utility | |
parent | 32ac7739348f6bc6aaf0db1e85a395368300dc33 (diff) |
bugfix
Diffstat (limited to 'Utility')
-rw-r--r-- | Utility/Kqueue.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Utility/Kqueue.hs b/Utility/Kqueue.hs index 58fc5a5b7..9013dbe7e 100644 --- a/Utility/Kqueue.hs +++ b/Utility/Kqueue.hs @@ -44,6 +44,7 @@ isAdd (DeletedDir _) = False changedFile :: Change -> FilePath changedFile (Added f) = f changedFile (Deleted f) = f +changedFile (DeletedDir f) = f data Kqueue = Kqueue { kqueueFd :: Fd |