rnd-20061230-1-src
[rocksndiamonds.git] / src / libgame / hash.c
index 805190bfe81404424a3e34e40024bd683395e43a..e44313a87ba8a323bb0ca1d62c8807ea29fb4626 100644 (file)
@@ -1,7 +1,7 @@
 /***********************************************************
 * Artsoft Retro-Game Library                               *
 *----------------------------------------------------------*
-* (c) 1994-2003 Artsoft Entertainment                      *
+* (c) 1994-2006 Artsoft Entertainment                      *
 *               Holger Schemel                             *
 *               Detmolder Strasse 189                      *
 *               33604 Bielefeld                            *
@@ -58,7 +58,7 @@ create_hashtable(unsigned int minsize, float maxloadfactor,
     h->table = (struct entry **)malloc(sizeof(struct entry*) * size);
     if (NULL == h->table) { free(h); return NULL; } /*oom*/
 
-    for (i=0;i<size;i++) { h->table[i] = NULL; }
+    for (i=0; i < size; i++) { h->table[i] = NULL; }
     h->tablelength  = size;
     h->entrycount   = 0;
     h->hashfn       = hashf;