diff options
author | Johannes Schlüter <johannes@php.net> | 2006-02-24 23:10:53 +0000 |
---|---|---|
committer | Johannes Schlüter <johannes@php.net> | 2006-02-24 23:10:53 +0000 |
commit | e0053b2536c6925588a3909c9365e77d45e9d12c (patch) | |
tree | 9b24d16f21ff6419397fac37b75e021226c9c654 | |
parent | cea8dd887b3a207f0cd87a9c25df4a9f539ca227 (diff) | |
download | php-git-e0053b2536c6925588a3909c9365e77d45e9d12c.tar.gz |
- We need %v here
-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 f11eb926c3..ae365e5000 100644 --- a/ext/reflection/php_reflection.c +++ b/ext/reflection/php_reflection.c @@ -533,7 +533,7 @@ static void _class_string(string *str, zend_class_entry *ce, zval *obj, char *in /* {{{ _const_string */ static void _const_string(string *str, char *name, zval *value, char *indent TSRMLS_DC) { - string_printf(str, "%s Constant [ %s %s ] { }\n", + string_printf(str, "%s Constant [ %s %v ] { }\n", indent, zend_zval_type_name(value), name); |