summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-08-07 20:23:35 +0000
committerAntony Dovgal <tony2001@php.net>2006-08-07 20:23:35 +0000
commit8a3002d933e0ddb41b04579fb589ff366a9a3b97 (patch)
treeaa53e2a26d7e399a8200ac46eaab5fa6ef2c246e /ext
parent194b309d2d2e49636dcb9bcc9c57b4b700a47ab3 (diff)
downloadphp-git-8a3002d933e0ddb41b04579fb589ff366a9a3b97.tar.gz
fix types of the variables
Diffstat (limited to 'ext')
-rw-r--r--ext/dom/node.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/dom/node.c b/ext/dom/node.c
index acc8f4197a..2da7b438de 100644
--- a/ext/dom/node.c
+++ b/ext/dom/node.c
@@ -1682,11 +1682,11 @@ static void dom_canonicalization(INTERNAL_FUNCTION_PARAMETERS, int mode)
xmlDocPtr docp;
xmlNodeSetPtr nodeset = NULL;
dom_object *intern;
- long exclusive=0, with_comments=0, file_len=0;
+ zend_bool exclusive=0, with_comments=0;
xmlChar **inclusive_ns_prefixes = NULL;
char *file = NULL;
- int ret = -1;
- xmlOutputBufferPtr buf;
+ int ret = -1, file_len = 0;
+ xmlOutputBufferPtr buf;
xmlXPathContextPtr ctxp=NULL;
xmlXPathObjectPtr xpathobjp=NULL;