diff options
author | Marcus Boerger <helly@php.net> | 2003-09-06 13:18:12 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2003-09-06 13:18:12 +0000 |
commit | a986b3f6a44eb2813156442a9db107a761e4970c (patch) | |
tree | d7b62f84308586ba2bd76b0c60deda2c3c855b8e /ext/reflection/php_reflection.c | |
parent | 10ea007e3908578e64cc23abfd6d3c3e855175a1 (diff) | |
download | php-git-a986b3f6a44eb2813156442a9db107a761e4970c.tar.gz |
Add missing newline if no static methods are available
Diffstat (limited to 'ext/reflection/php_reflection.c')
-rw-r--r-- | ext/reflection/php_reflection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/reflection/php_reflection.c b/ext/reflection/php_reflection.c index 8dfe11a55d..ee9f7a5dff 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -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; |