diff options
author | Joey Hess <joey@kitenet.net> | 2014-10-16 15:37:12 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2014-10-16 15:37:12 -0400 |
commit | 527e63452d3340f5e5093f8fd9ca84c0615de7e3 (patch) | |
tree | ee03b7bdc6fa8e6dff27354095ee7d5a16b19152 /Utility | |
parent | 0b75a581c0bcb4e988139d3586a43475d43e27f8 (diff) |
typos
Diffstat (limited to 'Utility')
-rw-r--r-- | Utility/Env.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Utility/Env.hs b/Utility/Env.hs index bfb61aa8d..245c571c8 100644 --- a/Utility/Env.hs +++ b/Utility/Env.hs @@ -48,7 +48,7 @@ setEnv :: String -> String -> Bool -> IO () #ifndef mingw32_HOST_OS setEnv var val overwrite = PE.setEnv var val overwrite #else -setEnv var val True = System.Setenv.setEnv var val +setEnv var val True = System.SetEnv.setEnv var val setEnv var val False = do r <- getEnv var case r of @@ -60,7 +60,7 @@ unsetEnv :: String -> IO () #ifndef mingw32_HOST_OS unsetEnv = PE.unsetEnv #else -unsetEnv = System.Setenv.unsetEnv +unsetEnv = System.SetEnv.unsetEnv #endif {- Adds the environment variable to the input environment. If already |