Skip to content

Commit ae0bf44

Browse files
committed
soap: Fix const-generic compile warning
1 parent ea8aab9 commit ae0bf44

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

ext/soap/php_encoding.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2529,8 +2529,7 @@ static zval *to_zval_array(zval *ret, encodeTypePtr type, xmlNodePtr data)
25292529
if (data &&
25302530
(attr = get_attribute(data->properties,"arrayType")) &&
25312531
attr->children && attr->children->content) {
2532-
const char *type;
2533-
char *end, *ns;
2532+
char *type, *end, *ns;
25342533
xmlNsPtr nsptr;
25352534

25362535
parse_namespace(attr->children->content, &type, &ns);

0 commit comments

Comments
 (0)