wez Sun Feb 9 16:35:30 2003 EDT Modified files: /php4/ext/rpc rpc_proxy.c Log: Fix some warnings Index: php4/ext/rpc/rpc_proxy.c diff -u php4/ext/rpc/rpc_proxy.c:1.6 php4/ext/rpc/rpc_proxy.c:1.7 --- php4/ext/rpc/rpc_proxy.c:1.6 Sat Jan 11 03:59:36 2003 +++ php4/ext/rpc/rpc_proxy.c Sun Feb 9 16:35:30 2003 @@ -107,7 +107,7 @@ 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 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; } /*
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php