summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schlüter <johannes@php.net>2006-02-24 23:10:53 +0000
committerJohannes Schlüter <johannes@php.net>2006-02-24 23:10:53 +0000
commite0053b2536c6925588a3909c9365e77d45e9d12c (patch)
tree9b24d16f21ff6419397fac37b75e021226c9c654
parentcea8dd887b3a207f0cd87a9c25df4a9f539ca227 (diff)
downloadphp-git-e0053b2536c6925588a3909c9365e77d45e9d12c.tar.gz
- We need %v here
-rw-r--r--ext/reflection/php_reflection.c2
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);