]> granicus.if.org Git - php/commitdiff
last ws
authorJani Taskinen <jani@php.net>
Thu, 27 Sep 2007 15:59:42 +0000 (15:59 +0000)
committerJani Taskinen <jani@php.net>
Thu, 27 Sep 2007 15:59:42 +0000 (15:59 +0000)
Zend/zend_ini.c

index b65dcb97e2a79b99d88073d08e7a0c9c12f7ecaf..a7ce691f95fd34888fe2f767a0c2b91a0e700c25 100644 (file)
@@ -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);