fix silly mistake in hGetBufSome (#4895)
[ghc-base.git] / Unsafe / Coerce.hs
index 9b1e360..516d7e0 100644 (file)
@@ -28,7 +28,7 @@
 module Unsafe.Coerce (unsafeCoerce) where
 
 #if defined(__GLASGOW_HASKELL__)
-import GHC.Base (unsafeCoerce#)
+import GHC.Prim (unsafeCoerce#)
 unsafeCoerce :: a -> b
 unsafeCoerce = unsafeCoerce#
 #endif