diff options
author | Andi Gutmans <andi@php.net> | 2002-09-15 07:45:26 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 2002-09-15 07:45:26 +0000 |
commit | 43139dc7553956d57619f2429230d1ac6ad72fd4 (patch) | |
tree | 082e26b0449ba3e974eeadd4ce28c69be94cf450 /Zend/zend_ini.c | |
parent | fcc0ce7eec7288c3dd875d45f6d957b5b4b0b288 (diff) | |
download | php-git-43139dc7553956d57619f2429230d1ac6ad72fd4.tar.gz |
- WS - Always use "if (" and not "if("
Diffstat (limited to 'Zend/zend_ini.c')
-rw-r--r-- | Zend/zend_ini.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_ini.c b/Zend/zend_ini.c index cfeae83363..afed2a53c2 100644 --- a/Zend/zend_ini.c +++ b/Zend/zend_ini.c @@ -307,7 +307,7 @@ static void zend_ini_displayer_cb(zend_ini_entry *ini_entry, int type) display_string = ini_entry->orig_value; display_string_length = ini_entry->orig_value_length; } else { - if(zend_uv.html_errors) { + if (zend_uv.html_errors) { display_string = NO_VALUE_HTML; display_string_length = sizeof(NO_VALUE_HTML)-1; } else { @@ -319,7 +319,7 @@ static void zend_ini_displayer_cb(zend_ini_entry *ini_entry, int type) display_string = ini_entry->value; display_string_length = ini_entry->value_length; } else { - if(zend_uv.html_errors) { + if (zend_uv.html_errors) { display_string = NO_VALUE_HTML; display_string_length = sizeof(NO_VALUE_HTML)-1; } else { |