summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndi Gutmans <andi@php.net>2002-07-23 19:29:02 +0000
committerAndi Gutmans <andi@php.net>2002-07-23 19:29:02 +0000
commitb291dfad3db357c8e823bb5fd4b486d79a555150 (patch)
treea54d9fa05cd52753e3762e9cbe89b8ca3f39cf59
parent2771e6d4f6dcf9eee2e96bb404ba1d3872f67f74 (diff)
downloadphp-git-b291dfad3db357c8e823bb5fd4b486d79a555150.tar.gz
- Fix WS.
-rw-r--r--Zend/zend_hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_hash.c b/Zend/zend_hash.c
index 849e67e1fe..06f8335d7f 100644
--- a/Zend/zend_hash.c
+++ b/Zend/zend_hash.c
@@ -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__);