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 /Zend/zend_reflection_api.c | |
| parent | 10ea007e3908578e64cc23abfd6d3c3e855175a1 (diff) | |
| download | php-git-a986b3f6a44eb2813156442a9db107a761e4970c.tar.gz | |
Add missing newline if no static methods are available
Diffstat (limited to 'Zend/zend_reflection_api.c')
| -rw-r--r-- | Zend/zend_reflection_api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_reflection_api.c b/Zend/zend_reflection_api.c index 8dfe11a55d..ee9f7a5dff 100644 --- a/Zend/zend_reflection_api.c +++ b/Zend/zend_reflection_api.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; |
