diff options
Diffstat (limited to 'compiler/utils/Binary.hs')
-rw-r--r-- | compiler/utils/Binary.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/Binary.hs b/compiler/utils/Binary.hs index 0aa8c648b8..53ee903f2f 100644 --- a/compiler/utils/Binary.hs +++ b/compiler/utils/Binary.hs @@ -681,7 +681,7 @@ putFS bh fs = putBS bh $ fastStringToByteString fs getFS :: BinHandle -> IO FastString getFS bh = do bs <- getBS bh - mkFastStringByteString bs + return $! mkFastStringByteString bs putBS :: BinHandle -> ByteString -> IO () putBS bh bs = |