diff options
Diffstat (limited to 'compiler/GHC/Data')
-rw-r--r-- | compiler/GHC/Data/FastString.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/GHC/Data/FastString.hs b/compiler/GHC/Data/FastString.hs index 98ca34c249..6ba6ac469a 100644 --- a/compiler/GHC/Data/FastString.hs +++ b/compiler/GHC/Data/FastString.hs @@ -623,8 +623,8 @@ unconsFS fs = [] -> Nothing (chr : str) -> Just (chr, mkFastString str) -uniqueOfFS :: FastString -> Int -uniqueOfFS fs = uniq fs +uniqueOfFS :: FastString -> Int64 +uniqueOfFS fs = fromIntegral (uniq fs) nilFS :: FastString nilFS = mkFastString "" |