diff options
author | Joey Smith <joey@php.net> | 2001-08-14 07:44:21 +0000 |
---|---|---|
committer | Joey Smith <joey@php.net> | 2001-08-14 07:44:21 +0000 |
commit | a26110de2c1e0626ce01a13af51eaa8ece2f3909 (patch) | |
tree | 82900689c0108f6f5bec4313fb47d2832a1e2ae2 /ext/domxml/php_domxml.c | |
parent | b79868c28cc7546e80a34e48ee97ed728e5b9688 (diff) | |
download | php-git-a26110de2c1e0626ce01a13af51eaa8ece2f3909.tar.gz |
Fix my own ws errors.
Diffstat (limited to 'ext/domxml/php_domxml.c')
-rw-r--r-- | ext/domxml/php_domxml.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ext/domxml/php_domxml.c b/ext/domxml/php_domxml.c index f95f69bf55..96fa1b4ba7 100644 --- a/ext/domxml/php_domxml.c +++ b/ext/domxml/php_domxml.c @@ -588,9 +588,9 @@ static zval *php_xpathcontext_new(xmlXPathContextPtr obj, int *found TSRMLS_DC) zval *wrapper; int rsrc_type; - if (! found) { - *found = 0; - } + if (! found) { + *found = 0; + } if (!obj) { MAKE_STD_ZVAL(wrapper); @@ -666,9 +666,9 @@ static zval *php_domobject_new(xmlNodePtr obj, int *found TSRMLS_DC) char *content; int rsrc_type; - if (! found) { - *found = 0; - } + if (! found) { + *found = 0; + } if (!obj) { MAKE_STD_ZVAL(wrapper); |