summaryrefslogtreecommitdiff
path: root/Zend/zend_variables.h
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2004-09-26 22:19:57 +0000
committerMarcus Boerger <helly@php.net>2004-09-26 22:19:57 +0000
commite0ec7c981ec012316c5255df103a09545acd4bec (patch)
tree995d14060b6e1209ae86f5a6cf7ab1db1bb3c8de /Zend/zend_variables.h
parent32e478b9fc0c677ada30e9dc13b6983d7154550d (diff)
downloadphp-git-e0ec7c981ec012316c5255df103a09545acd4bec.tar.gz
- Fix build
Diffstat (limited to 'Zend/zend_variables.h')
-rw-r--r--Zend/zend_variables.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_variables.h b/Zend/zend_variables.h
index 8cdf76e639..a30ba91fe9 100644
--- a/Zend/zend_variables.h
+++ b/Zend/zend_variables.h
@@ -40,9 +40,9 @@ ZEND_API int _zval_copy_ctor_func(zval *zvalue ZEND_FILE_LINE_DC);
static inline int _zval_copy_ctor(zval *zvalue ZEND_FILE_LINE_DC)
{
if (zvalue->type <= IS_BOOL) {
- return;
+ return SUCCESS;
}
- _zval_copy_ctor_func(zvalue ZEND_FILE_LINE_CC);
+ return _zval_copy_ctor_func(zvalue ZEND_FILE_LINE_CC);
}