tony2001                Mon Aug  7 20:23:35 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/ext/dom    node.c 
  Log:
  fix types of the variables
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/dom/node.c?r1=1.37.2.3.2.3&r2=1.37.2.3.2.4&diff_format=u
Index: php-src/ext/dom/node.c
diff -u php-src/ext/dom/node.c:1.37.2.3.2.3 php-src/ext/dom/node.c:1.37.2.3.2.4
--- php-src/ext/dom/node.c:1.37.2.3.2.3 Sun Jul 16 16:04:09 2006
+++ php-src/ext/dom/node.c      Mon Aug  7 20:23:35 2006
@@ -17,7 +17,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $Id: node.c,v 1.37.2.3.2.3 2006/07/16 16:04:09 chregu Exp $ */
+/* $Id: node.c,v 1.37.2.3.2.4 2006/08/07 20:23:35 tony2001 Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -1682,11 +1682,11 @@
        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;
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to