]> granicus.if.org Git - php/commitdiff
kill compiler warning (unused variable)
authorfoobar <sniper@php.net>
Thu, 22 Aug 2002 00:43:18 +0000 (00:43 +0000)
committerfoobar <sniper@php.net>
Thu, 22 Aug 2002 00:43:18 +0000 (00:43 +0000)
ext/domxml/php_domxml.c

index b2bb39a28a7a6c8277459628fb4d727074fbca1d..837d25e6a8f6bb442591ebf8772b5623ea4988d3 100644 (file)
@@ -2500,7 +2500,7 @@ PHP_FUNCTION(domxml_node_replace_child)
 {
        zval *id, *newnode, *oldnode;
        xmlNodePtr children, newchild, oldchild, nodep;
-       int foundoldchild = 0, foundnewchild = 0;
+       int foundoldchild = 0;
        int ret;
 
        DOMXML_GET_THIS_OBJ(nodep, id, le_domxmlnodep);