Skip to content
Snippets Groups Projects
Commit fbf45eff authored by sof's avatar sof
Browse files

[project @ 1997-09-03 23:51:06 by sof]

unpackCStringBA# arguments swapped
parent d95b51ec
No related branches found
No related tags found
No related merge requests found
......@@ -137,7 +137,7 @@ unpackFS :: FastString -> String
#if defined(__GLASGOW_HASKELL__) && __GLASGOW_HASKELL__ <= 205
unpackFS (FastString _ l# ba#) = byteArrayToString (_ByteArray (0,I# l#) ba#)
#else
unpackFS (FastString _ l# ba#) = unpackCStringBA# l# ba#
unpackFS (FastString _ l# ba#) = unpackCStringBA# ba# l#
#endif
unpackFS (CharStr addr len#) =
unpack 0#
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment