summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2006-09-06 15:31:48 +0000
committerNuno Lopes <nlopess@php.net>2006-09-06 15:31:48 +0000
commitb772a83282dd04b587d07eb489c25f13982c53a3 (patch)
tree63bcc96fe25677bf0a026a1247741ca24a549fe0
parenteee95ef3f0d560d0272210fc06fbbd900756888a (diff)
downloadphp-git-b772a83282dd04b587d07eb489c25f13982c53a3.tar.gz
fix one more parameter (int*->int)
-rw-r--r--ext/simplexml/simplexml.c2
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;