diff options
author | Joey Hess <joeyh@joeyh.name> | 2017-10-24 13:20:26 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2017-10-24 13:20:26 -0400 |
commit | 2d0f5b29fdcc9b386e19757cf9a686c64e2c3b32 (patch) | |
tree | 2e5184666682b818159f36633fe5d771da8690d4 /Utility | |
parent | a40abb9f7566aa1e74d6ae9d7baf73ec904b1e22 (diff) |
fix
Diffstat (limited to 'Utility')
-rw-r--r-- | Utility/WinProcess.hs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Utility/WinProcess.hs b/Utility/WinProcess.hs index 4277931c0..cb9029874 100644 --- a/Utility/WinProcess.hs +++ b/Utility/WinProcess.hs @@ -8,6 +8,8 @@ module Utility.WinProcess where import Utility.PID +import System.IO terminatePID :: PID -> IO () -terminatePID p = warning "terminating processes on windows is not currently working" +terminatePID p = hPutStrLn stderr "terminating processes on windows is not currently working" + |