diff --git a/Raaz/Core/Types/Endian.hs b/Raaz/Core/Types/Endian.hs
--- a/Raaz/Core/Types/Endian.hs
+++ b/Raaz/Core/Types/Endian.hs
@@ -289,19 +289,19 @@
 
 
 instance EndianStore (LE Word64) where
-  load          = fmap byteSwap64    <$> peek
+  load  ptr     = fmap byteSwap64    <$> peek ptr
   store ptr     = poke ptr  . fmap byteSwap64
   adjustEndian  = c_Swap64Array . unLEPtr
 
 
 instance EndianStore (BE Word32) where
   load             = peek
-  store ptr        = poke
+  store            = poke
   adjustEndian _ _ = return ()
 
 instance EndianStore (BE Word64) where
   load             = peek
-  store ptr        = poke
+  store            = poke
   adjustEndian _ _ = return ()
 
 # else
diff --git a/raaz.cabal b/raaz.cabal
--- a/raaz.cabal
+++ b/raaz.cabal
@@ -1,5 +1,5 @@
 name:    raaz
-version: 0.1.0
+version: 0.1.1
 
 synopsis: The raaz cryptographic library.
 
@@ -240,7 +240,7 @@
   other-modules: Command.Checksum
                , Command.Rand
   build-depends: base
-               , raaz     == 0.1.0
+               , raaz     == 0.1.1
   if impl(ghc < 8)
     -- 'transformers' needed for "Control.Monad.IO.Class" only
     -- starting with base-4.9 we don't need 'transformers' anymore
@@ -291,7 +291,7 @@
                , QuickCheck                     >= 2.4
                , hspec
                , transformers
-               , raaz                           == 0.1.0
+               , raaz                           == 0.1.1
                , vector
 
 ---------------------------------------------- Bench marks -----------------------------------------
