From: foobar Date: Thu, 22 Aug 2002 00:43:18 +0000 (+0000) Subject: kill compiler warning (unused variable) X-Git-Tag: RELEASE_0_91~332 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7796bc12dd2748956757e2711cd3a25519c5640a;p=php kill compiler warning (unused variable) --- diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index b2bb39a28a..837d25e6a8 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -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);