switch to spaces only..
[IRC.git] / Robust / src / Runtime / DSTM / interface / clookup2.c
index e0a8b2c372ccba07649da0be24df93e35dad4414..0dfc9fc9089b1d155a581e7e8183f8d457f15591 100644 (file)
@@ -114,18 +114,18 @@ void chashResize(chashtable_t *table, unsigned int newsize) {
     if (key != 0) {
       newnode= &table->table[(key&mask)>>1];
       if (newnode->key==0) {
-       newnode->key=key;
-       newnode->ptr=curr->ptr;
-       continue;
+        newnode->key=key;
+        newnode->ptr=curr->ptr;
+        continue;
       }
 
       for(bin=1; 1; bin++) {
-       newnode = &table->table[((key+bin*331) & mask)>>1];
-       if (newnode->key==0) {
-         newnode->key=key;
-         newnode->ptr=curr->ptr;
-         break;
-       }
+        newnode = &table->table[((key+bin*331) & mask)>>1];
+        if (newnode->key==0) {
+          newnode->key=key;
+          newnode->ptr=curr->ptr;
+          break;
+        }
       }
     }
   }