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 /Utility/LockFile | |
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..
Diffstat (limited to 'Utility/LockFile')
-rw-r--r-- | Utility/LockFile/PidLock.hs | 3 |
1 files changed, 2 insertions, 1 deletions
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 |