diff options
| author | Andi Gutmans <andi@php.net> | 2002-11-30 11:20:25 +0000 |
|---|---|---|
| committer | Andi Gutmans <andi@php.net> | 2002-11-30 11:20:25 +0000 |
| commit | 671fff2fde6b2bead914f1cf6951fc4bd3617c07 (patch) | |
| tree | 2188e83d6040173ffaafe461e7cfb6247506ebba /Zend/zend_builtin_functions.c | |
| parent | 3429e3313b9a50fe966c1548a1b11fc493631d39 (diff) | |
| download | php-git-671fff2fde6b2bead914f1cf6951fc4bd3617c07.tar.gz | |
h WHitespace
Diffstat (limited to 'Zend/zend_builtin_functions.c')
| -rw-r--r-- | Zend/zend_builtin_functions.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index f41b5ee7b8..5e803057d7 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -433,7 +433,7 @@ ZEND_FUNCTION(define) int case_sensitive; zend_constant c; - switch(ZEND_NUM_ARGS()) { + switch (ZEND_NUM_ARGS()) { case 2: if (zend_get_parameters_ex(2, &var, &val)==FAILURE) { RETURN_FALSE; @@ -456,7 +456,7 @@ ZEND_FUNCTION(define) break; } - switch((*val)->type) { + switch ((*val)->type) { case IS_LONG: case IS_DOUBLE: case IS_STRING: @@ -897,7 +897,7 @@ ZEND_FUNCTION(trigger_error) int error_type = E_USER_NOTICE; zval **z_error_type, **z_error_message; - switch(ZEND_NUM_ARGS()) { + switch (ZEND_NUM_ARGS()) { case 1: if (zend_get_parameters_ex(1, &z_error_message)==FAILURE) { ZEND_WRONG_PARAM_COUNT(); |
