diff options
| author | Wez Furlong <wez@php.net> | 2003-02-09 21:35:31 +0000 |
|---|---|---|
| committer | Wez Furlong <wez@php.net> | 2003-02-09 21:35:31 +0000 |
| commit | 47922a69965a47dfa4c32438267b9156dc3f7b0d (patch) | |
| tree | 169546a86704e185d72537086abe49246cd1d09f | |
| parent | ba32a619aeda5188a4bf8f04b4df7c3dd6d97bbf (diff) | |
| download | php-git-47922a69965a47dfa4c32438267b9156dc3f7b0d.tar.gz | |
Fix some warnings
| -rw-r--r-- | ext/rpc/rpc_proxy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/rpc/rpc_proxy.c b/ext/rpc/rpc_proxy.c index f50579d4c2..4699008670 100644 --- a/ext/rpc/rpc_proxy.c +++ b/ext/rpc/rpc_proxy.c @@ -107,7 +107,7 @@ static void rpc_proxy_set(zval **property, zval *value TSRMLS_DC) static int rpc_proxy_has_property(zval *object, zval *member, int check_empty TSRMLS_DC) { - return NULL; + return FAILURE; } static void rpc_proxy_unset_property(zval *object, zval *member TSRMLS_DC) @@ -136,12 +136,12 @@ static zend_class_entry* rpc_proxy_get_class_entry(zval *object TSRMLS_DC) static int rpc_proxy_get_classname(zval *object, char **class_name, zend_uint *class_name_len, int parent TSRMLS_DC) { - return NULL; + return FAILURE; } static int rpc_proxy_compare(zval *object1, zval *object2 TSRMLS_DC) { - return NULL; + return FAILURE; } /* |
