diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -1,5 +1,11 @@
 # Hashtables changelog
 
+## 1.2.1.0
+
+  - Fixed an FFI import typo bug
+    (https://github.com/gregorycollins/hashtables/pull/27), thanks to Thijs
+    Alkemade for the fix.
+
 ## 1.2.0.2
 
   - Fixed serious bug (https://github.com/gregorycollins/hashtables/issues/24)
diff --git a/hashtables.cabal b/hashtables.cabal
--- a/hashtables.cabal
+++ b/hashtables.cabal
@@ -1,5 +1,5 @@
 Name:                hashtables
-Version:             1.2.0.2
+Version:             1.2.1.0
 Synopsis:            Mutable hash tables in the ST monad
 Homepage:            http://github.com/gregorycollins/hashtables
 License:             BSD3
@@ -90,16 +90,6 @@
     * @portable@, default /OFF/. If this flag is enabled, we use only pure
       Haskell code and try not to use unportable GHC extensions. Turning this
       flag on forces @unsafe-tricks@ and @sse42@ /OFF/.
-  .
-  This package has been tested with GHC 7.0.3, on:
-  .
-    * a MacBook Pro running Snow Leopard with an Intel Core i5 processor,
-      running GHC 7.0.3 in 64-bit mode.
-  .
-    * an Arch Linux desktop with an AMD Phenom II X4 940 quad-core processor.
-  .
-    * a MacBook Pro running Snow Leopard with an Intel Core 2 Duo processor,
-      running GHC 6.12.3 in 32-bit mode.
   .
   Please send bug reports to
   <https://github.com/gregorycollins/hashtables/issues>.
diff --git a/src/Data/HashTable/Internal/CacheLine.hs b/src/Data/HashTable/Internal/CacheLine.hs
--- a/src/Data/HashTable/Internal/CacheLine.hs
+++ b/src/Data/HashTable/Internal/CacheLine.hs
@@ -56,7 +56,7 @@
 foreign import ccall unsafe "line_search_2"
   c_lineSearch_2 :: Ptr a -> CInt -> CUShort -> CUShort -> IO CInt
 
-foreign import ccall unsafe "line_search_2"
+foreign import ccall unsafe "line_search_3"
   c_lineSearch_3 :: Ptr a -> CInt -> CUShort -> CUShort -> CUShort -> IO CInt
 
 foreign import ccall unsafe "forward_search_2"
diff --git a/test/suite/Data/HashTable/Test/Common.hs b/test/suite/Data/HashTable/Test/Common.hs
--- a/test/suite/Data/HashTable/Test/Common.hs
+++ b/test/suite/Data/HashTable/Test/Common.hs
@@ -25,8 +25,10 @@
 import           Test.Framework.Providers.HUnit
 import           Test.Framework.Providers.QuickCheck2
 import           Test.HUnit                           (assertFailure)
-import           Test.QuickCheck
-import           Test.QuickCheck.Monadic
+import           Test.QuickCheck                      (arbitrary, choose,
+                                                       sample')
+import           Test.QuickCheck.Monadic              (PropertyM, assert,
+                                                       forAllM, monadicIO, run)
 ------------------------------------------------------------------------------
 import qualified Data.HashTable.Class                 as C
 import           Data.HashTable.Internal.Utils        (unsafeIOToST)
