Fixed printf format.
authorAndrey Hristov <andrey@php.net>
Wed, 15 Sep 1999 13:37:11 +0000 (13:37 +0000)
committerAndrey Hristov <andrey@php.net>
Wed, 15 Sep 1999 13:37:11 +0000 (13:37 +0000)
ext/standard/var.c

index 5a19b6fc0b67f2da3836088f8a2f40788c4f1104..58bc8da3f60ef29c731dfb192bfcee20c534e931 100644 (file)
@@ -75,7 +75,7 @@ void php3api_var_dump(pval **struc, int level)
 
                case IS_OBJECT:
                        myht = HASH_OF(*struc);
-                       i = sprintf(buf, "%*object of %s (%d) {\n", level, ' ', (*struc)->value.obj.ce->name, zend_hash_num_elements(myht));
+                       i = sprintf(buf, "%*cobject of %s (%d) {\n", level, ' ', (*struc)->value.obj.ce->name, zend_hash_num_elements(myht));
                        PHPWRITE(&buf[1], i - 1);
                  head_done: