Add missing newline if no static methods are available

This commit is contained in:
Marcus Boerger 2003-09-06 13:18:12 +00:00
parent 10ea007e39
commit a986b3f6a4
2 changed files with 2 additions and 2 deletions

View File

@ -371,7 +371,7 @@ static void _class_string(string *str, zend_class_entry *ce, zval *obj, char *in
/* static properties */
string_printf(str, "\n%s - Static methods [%d] {", indent, count_static_funcs);
if (count > 0) {
if (count_static_funcs > 0) {
HashPosition pos;
zend_function *mptr;

View File

@ -371,7 +371,7 @@ static void _class_string(string *str, zend_class_entry *ce, zval *obj, char *in
/* static properties */
string_printf(str, "\n%s - Static methods [%d] {", indent, count_static_funcs);
if (count > 0) {
if (count_static_funcs > 0) {
HashPosition pos;
zend_function *mptr;