diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-12-19 17:42:45 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-12-19 17:42:45 -0400 |
commit | da6a3aa32534fa810fb3306bc6cfe712f6adf375 (patch) | |
tree | b625237a3a333c9a607c7775ecb38e4801e1d967 | |
parent | ef51cba7a72c545460d0cd6e7a33340e2990d493 (diff) |
fix build warnings under ghc 7.10
Caused by AMP.. Since I've finally upgraded my dev laptop to 7.10,
I may start missing imports that are not needed with it but are with older
versions..
-rw-r--r-- | Types/DeferredParse.hs | 1 | ||||
-rw-r--r-- | Utility/LockFile/PidLock.hs | 3 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Types/DeferredParse.hs b/Types/DeferredParse.hs index 983ba3f5c..7445615f6 100644 --- a/Types/DeferredParse.hs +++ b/Types/DeferredParse.hs @@ -10,7 +10,6 @@ module Types.DeferredParse where import Annex -import Common import Options.Applicative diff --git a/Utility/LockFile/PidLock.hs b/Utility/LockFile/PidLock.hs index 086e771aa..53eb5a54f 100644 --- a/Utility/LockFile/PidLock.hs +++ b/Utility/LockFile/PidLock.hs @@ -31,11 +31,12 @@ import System.IO import System.Posix import Data.Maybe import Data.List -import Control.Applicative import Network.BSD import System.FilePath import Data.Hash.MD5 import System.Directory +import Control.Applicative +import Prelude type LockFile = FilePath |