diff options
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 9ea18fd3bd..5129825743 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -2531,7 +2531,7 @@ PHP_FUNCTION(domxml_node_replace_child) /* if the child to replace is existent and the new child isn't already * a child, then do the replacement */ - if(foundoldchild ) { + if (foundoldchild) { zval *rv = NULL; xmlNodePtr node; node = xmlReplaceNode(oldchild, newchild); |