summaryrefslogtreecommitdiff
path: root/ext/com/COM.c
diff options
context:
space:
mode:
authorThies C. Arntzen <thies@php.net>2001-07-11 12:42:25 +0000
committerThies C. Arntzen <thies@php.net>2001-07-11 12:42:25 +0000
commit0ef0f8e32bd509161a5113081f2137cd11313f3f (patch)
tree20b63b848fd3590d36f819221bdc057ae81be427 /ext/com/COM.c
parent07ea0684547d1bb701c3a7db95a7d9802500025d (diff)
downloadphp-git-0ef0f8e32bd509161a5113081f2137cd11313f3f.tar.gz
ZVAL_BOOL(v,0) -> ZVAL_FALSE(v)
Diffstat (limited to 'ext/com/COM.c')
-rw-r--r--ext/com/COM.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/com/COM.c b/ext/com/COM.c
index 7304f68676..0e8401285e 100644
--- a/ext/com/COM.c
+++ b/ext/com/COM.c
@@ -1321,7 +1321,7 @@ PHPAPI void php_COM_call_function_handler(INTERNAL_FUNCTION_PARAMETERS, zend_pro
PHP_FN(com_load)(INTERNAL_FUNCTION_PARAM_PASSTHRU);
if(!zend_is_true(return_value))
{
- ZVAL_BOOL(object, 0);
+ ZVAL_FALSE(object);
return;
}
ALLOC_ZVAL(object_handle);