]> granicus.if.org Git - php/commitdiff
- Fix WS.
authorAndi Gutmans <andi@php.net>
Tue, 23 Jul 2002 19:29:02 +0000 (19:29 +0000)
committerAndi Gutmans <andi@php.net>
Tue, 23 Jul 2002 19:29:02 +0000 (19:29 +0000)
Zend/zend_hash.c

index 849e67e1fecc90746623807fe7e3adde3edbeb0d..06f8335d7f584713254a8ec7c373ded07a2a3e9f 100644 (file)
@@ -84,7 +84,7 @@ static void _zend_is_inconsistent(HashTable *ht, char *file, int line)
        if (ht->inconsistent==HT_OK) {
                return;
        }
-    switch (ht->inconsistent) {
+       switch (ht->inconsistent) {
                case HT_IS_DESTROYING:
                        zend_output_debug_string(1, "%s(%d) : ht=0x%08x is being destroyed", file, line, ht);
                        break;
@@ -94,7 +94,7 @@ static void _zend_is_inconsistent(HashTable *ht, char *file, int line)
                case HT_CLEANING:
                        zend_output_debug_string(1, "%s(%d) : ht=0x%08x is being cleaned", file, line, ht);
                        break;
-    }
+       }
        zend_bailout();
 }
 #define IS_CONSISTENT(a) _zend_is_inconsistent(a, __FILE__, __LINE__);