diff options
author | foobar <sniper@php.net> | 2002-08-22 00:43:18 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2002-08-22 00:43:18 +0000 |
commit | 7796bc12dd2748956757e2711cd3a25519c5640a (patch) | |
tree | 8643ce6e490ad2df42120fcb6e2ee7685d70eeac /ext/domxml/php_domxml.c | |
parent | b9d40670015c54f124154e704ab9ae28c69cfea2 (diff) | |
download | php-git-7796bc12dd2748956757e2711cd3a25519c5640a.tar.gz |
kill compiler warning (unused variable)
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r-- | ext/domxml/php_domxml.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); |