diff options
author | Joey Hess <joey@kitenet.net> | 2012-09-29 16:09:07 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-09-29 16:09:07 -0400 |
commit | 713388bf4d65552d5b2e8b070fbb8879b4264efd (patch) | |
tree | 363375a5c9a5593d1ff4f5f1f94056e155db8367 /Assistant/Threads/MountWatcher.hs | |
parent | dc88c9706d63bb056b01d97509afcec98c0c2f3c (diff) |
avoid some warnings when built w/o dbus
Diffstat (limited to 'Assistant/Threads/MountWatcher.hs')
-rw-r--r-- | Assistant/Threads/MountWatcher.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Assistant/Threads/MountWatcher.hs b/Assistant/Threads/MountWatcher.hs index e52dc9093..79fcce08c 100644 --- a/Assistant/Threads/MountWatcher.hs +++ b/Assistant/Threads/MountWatcher.hs @@ -22,8 +22,6 @@ import Utility.Mounts import Remote.List import qualified Types.Remote as Remote -import Control.Concurrent -import qualified Control.Exception as E import qualified Data.Set as S #if WITH_DBUS @@ -31,6 +29,8 @@ import Utility.DBus import DBus.Client import DBus import Data.Word (Word32) +import Control.Concurrent +import qualified Control.Exception as E #else #warning Building without dbus support; will use mtab polling #endif |