diff options
author | Nikita Popov <nikic@php.net> | 2014-09-21 20:28:44 +0200 |
---|---|---|
committer | Nikita Popov <nikic@php.net> | 2014-09-21 20:49:39 +0200 |
commit | 2a7de9fdbba28152fadcdddc2b731d319405e106 (patch) | |
tree | 54e6063066fe7a06e31b7a2010f65d80f3e9b949 /ext/soap/php_encoding.c | |
parent | e0df8cc8100f31534718e69cc41981e6c7490b20 (diff) | |
download | php-git-2a7de9fdbba28152fadcdddc2b731d319405e106.tar.gz |
Rename smart_str_append to smart_str_append_smart_str
It's used only rarely and I'm running out of append names...
Diffstat (limited to 'ext/soap/php_encoding.c')
-rw-r--r-- | ext/soap/php_encoding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_encoding.c b/ext/soap/php_encoding.c index 99375be050..d34587b85e 100644 --- a/ext/soap/php_encoding.c +++ b/ext/soap/php_encoding.c @@ -2441,7 +2441,7 @@ iterator_done: smart_str_appendl(&array_type,"xsd:ur-type",sizeof("xsd:ur-type")-1); } smart_str_appendc(&array_type, '['); - smart_str_append(&array_type, &array_size); + smart_str_append_smart_str(&array_type, &array_size); smart_str_appendc(&array_type, ']'); smart_str_0(&array_type); set_ns_prop(xmlParam, SOAP_1_1_ENC_NAMESPACE, "arrayType", array_type.s->val); |