diff options
author | Jani Taskinen <jani@php.net> | 2007-09-27 15:59:42 +0000 |
---|---|---|
committer | Jani Taskinen <jani@php.net> | 2007-09-27 15:59:42 +0000 |
commit | 7668572e26b1b6f5f2c6577e733b93fbf2e25710 (patch) | |
tree | 3851ff977cf07817262fce5eae05ff63cfd76b92 | |
parent | c3c0fd28197a98b549ab76c54f5c208f60208279 (diff) | |
download | php-git-7668572e26b1b6f5f2c6577e733b93fbf2e25710.tar.gz |
last ws
-rw-r--r-- | Zend/zend_ini.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Zend/zend_ini.c b/Zend/zend_ini.c index b65dcb97e2..a7ce691f95 100644 --- a/Zend/zend_ini.c +++ b/Zend/zend_ini.c @@ -394,10 +394,10 @@ static void zend_ini_displayer_cb(zend_ini_entry *ini_entry, int type) /* {{{ */ } else { if (zend_uv.html_errors) { display_string = NO_VALUE_HTML; - display_string_length = sizeof(NO_VALUE_HTML)-1; + display_string_length = sizeof(NO_VALUE_HTML) - 1; } else { display_string = NO_VALUE_PLAINTEXT; - display_string_length = sizeof(NO_VALUE_PLAINTEXT)-1; + display_string_length = sizeof(NO_VALUE_PLAINTEXT) - 1; } } } else if (ini_entry->value && ini_entry->value[0]) { @@ -406,10 +406,10 @@ static void zend_ini_displayer_cb(zend_ini_entry *ini_entry, int type) /* {{{ */ } else { if (zend_uv.html_errors) { display_string = NO_VALUE_HTML; - display_string_length = sizeof(NO_VALUE_HTML)-1; + display_string_length = sizeof(NO_VALUE_HTML) - 1; } else { display_string = NO_VALUE_PLAINTEXT; - display_string_length = sizeof(NO_VALUE_PLAINTEXT)-1; + display_string_length = sizeof(NO_VALUE_PLAINTEXT) - 1; } } ZEND_WRITE(display_string, display_string_length); |