Fix CPP failure by adding space before hASH_TBL_SIZE
[ghc-hetmet.git] / ghc / compiler / utils / FastString.lhs
index 4d432e6..ea30779 100644 (file)
@@ -436,7 +436,7 @@ nilFS = mkFastString ""
 getFastStringTable :: IO [[FastString]]
 getFastStringTable = do
   tbl <- readIORef string_table
-  buckets <- mapM (lookupTbl tbl) [0..hASH_TBL_SIZE]
+  buckets <- mapM (lookupTbl tbl) [0 .. hASH_TBL_SIZE]
   return buckets
 
 -- -----------------------------------------------------------------------------