summaryrefslogtreecommitdiff
path: root/compiler/utils/Binary.hs
diff options
context:
space:
mode:
authorIan Lynagh <ian@well-typed.com>2012-12-14 18:14:51 +0000
committerIan Lynagh <ian@well-typed.com>2012-12-14 18:14:51 +0000
commitca56668af97f534b3cff8717fc35d795a0bcb47d (patch)
tree5f0d0b7190bd83f60d15e7dc1815ed10fad418aa /compiler/utils/Binary.hs
parenta243fa7985b482434bd5bcf5573210f3eb87f57c (diff)
downloadhaskell-ca56668af97f534b3cff8717fc35d795a0bcb47d.tar.gz
Remove the trivial mkFastStringFastBytes wrapper
Diffstat (limited to 'compiler/utils/Binary.hs')
-rw-r--r--compiler/utils/Binary.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/Binary.hs b/compiler/utils/Binary.hs
index 77f29a021f..e90addda26 100644
--- a/compiler/utils/Binary.hs
+++ b/compiler/utils/Binary.hs
@@ -720,7 +720,7 @@ putFS bh fs = putBS bh $ fastStringToFastBytes fs
getFS :: BinHandle -> IO FastString
getFS bh = do bs <- getBS bh
- mkFastStringFastBytes bs
+ mkFastStringByteString bs
putBS :: BinHandle -> ByteString -> IO ()
putBS bh bs =