diff options
Diffstat (limited to 'ext/soap/php_encoding.c')
-rw-r--r-- | ext/soap/php_encoding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/soap/php_encoding.c b/ext/soap/php_encoding.c index 5469d6d826..e7c3f2fcf9 100644 --- a/ext/soap/php_encoding.c +++ b/ext/soap/php_encoding.c @@ -2062,10 +2062,10 @@ static xmlNodePtr to_xml_object(encodeTypePtr type, zval *data, int style, xmlNo property = master_to_xml(get_conversion((*zprop)->type), (*zprop), style, xmlParam TSRMLS_CC); if (key_type == HASH_KEY_IS_STRING) { - char *prop_name; + const char *prop_name; if (Z_TYPE_P(data) == IS_OBJECT) { - char *class_name; + const char *class_name; zend_unmangle_property_name(str_key, str_key_len-1, &class_name, &prop_name); } else { |