diff options
author | Joey Hess <joey@kitenet.net> | 2014-08-23 16:27:24 -0700 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-08-23 16:27:24 -0700 |
commit | bc85242c5922bf90284ab291d322f6926c032d27 (patch) | |
tree | d44189ce76fff1c7ccbca2823ad551df5823deff | |
parent | 149363668517be7a2c341b994e0ce2d9937ddadd (diff) |
fix imports for windows
-rw-r--r-- | Annex/Transfer.hs | 2 | ||||
-rw-r--r-- | Utility/Daemon.hs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Annex/Transfer.hs b/Annex/Transfer.hs index ec17609ea..448b5b3d7 100644 --- a/Annex/Transfer.hs +++ b/Annex/Transfer.hs @@ -23,7 +23,7 @@ import Annex.Notification as X import Annex.Perms import Utility.Metered #ifdef mingw32_HOST_OS -import Utility.WinLock +import Utility.LockFile #endif import Control.Concurrent diff --git a/Utility/Daemon.hs b/Utility/Daemon.hs index 228263911..2f0f84179 100644 --- a/Utility/Daemon.hs +++ b/Utility/Daemon.hs @@ -15,7 +15,7 @@ import Utility.PID import Utility.LogFile #else import Utility.WinProcess -import Utility.WinLock +import Utility.LockFile #endif #ifndef mingw32_HOST_OS |