diff options
author | Nuno Lopes <nlopess@php.net> | 2006-09-06 15:31:48 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2006-09-06 15:31:48 +0000 |
commit | b772a83282dd04b587d07eb489c25f13982c53a3 (patch) | |
tree | 63bcc96fe25677bf0a026a1247741ca24a549fe0 | |
parent | eee95ef3f0d560d0272210fc06fbbd900756888a (diff) | |
download | php-git-b772a83282dd04b587d07eb489c25f13982c53a3.tar.gz |
fix one more parameter (int*->int)
-rw-r--r-- | ext/simplexml/simplexml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c index 21a6c91ebc..3a00fc909a 100644 --- a/ext/simplexml/simplexml.c +++ b/ext/simplexml/simplexml.c @@ -1976,7 +1976,7 @@ SXE_METHOD(__construct) { php_sxe_object *sxe = php_sxe_fetch_object(getThis() TSRMLS_CC); char *data, *ns = NULL; - int data_len, *ns_len = 0; + int data_len, ns_len = 0; xmlDocPtr docp; long options = 0; zend_bool is_url = 0, isprefix = 0; |