diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-04-03 15:33:28 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-04-03 15:35:18 -0400 |
commit | 141937ed091643e2c47207f3818f46c7cf341189 (patch) | |
tree | 102dfcdef294cdc0ca6404232962749d213fac41 /RemoteDaemon | |
parent | fff817f70ce3c86d873775c0d113b074cc486ff8 (diff) |
rename bothHandles -> ioHandles
Diffstat (limited to 'RemoteDaemon')
-rw-r--r-- | RemoteDaemon/Core.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RemoteDaemon/Core.hs b/RemoteDaemon/Core.hs index 405a1fd88..a861ec29b 100644 --- a/RemoteDaemon/Core.hs +++ b/RemoteDaemon/Core.hs @@ -28,7 +28,7 @@ import qualified Data.Map as M runForeground :: IO () runForeground = do - (readh, writeh) <- ioHandles + (readh, writeh) <- dupIoHandles ichan <- newTChanIO :: IO (TChan Consumed) ochan <- newTChanIO :: IO (TChan Emitted) |