[project @ 2001-06-27 16:38:17 by simonmar]
[ghc-hetmet.git] / ghc / rts / Hash.c
index 876ba50..50fb3bc 100644 (file)
@@ -1,5 +1,5 @@
 /*-----------------------------------------------------------------------------
- * $Id: Hash.c,v 1.3 2000/12/04 12:31:21 simonmar Exp $
+ * $Id: Hash.c,v 1.5 2001/06/27 11:29:10 sewardj Exp $
  *
  * (c) The AQUA Project, Glasgow University, 1995-1998
  * (c) The GHC Team, 1999
@@ -244,7 +244,7 @@ insertHashTable(HashTable *table, StgWord key, void *data)
 
     /* We want no duplicates */
     ASSERT(lookupHashTable(table, key) == NULL);
-    
+
     /* When the average load gets too high, we expand the table */
     if (++table->kcount >= HLOAD * table->bcount)
        expand(table);