diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-12 17:23:55 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2016-07-12 17:23:55 +0300 |
commit | da7ecc13460bfee32363e5608f4662cec4cfdf34 (patch) | |
tree | 586ab284ccddccf64bd144b60dc6da9b6f8bb2aa | |
parent | refactoring (diff) | |
download | windows-env-da7ecc13460bfee32363e5608f4662cec4cfdf34.tar.gz windows-env-da7ecc13460bfee32363e5608f4662cec4cfdf34.zip |
reorder imports
-rw-r--r-- | src/Registry.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Registry.hs b/src/Registry.hs index 6ca9591..4aac81d 100644 --- a/src/Registry.hs +++ b/src/Registry.hs @@ -33,8 +33,8 @@ import Foreign.Ptr (castPtr, plusPtr) import Foreign.Storable (peek, poke, sizeOf) import System.IO.Error (catchIOError, doesNotExistErrorType, mkIOError, isDoesNotExistError) -import qualified System.Win32.Types as WinAPI import qualified System.Win32.Registry as WinAPI +import qualified System.Win32.Types as WinAPI type KeyName = String type KeyPath = KeyName |