From 22e379f57c2668672f3dbf909fc748dbc1ede50a Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 2 Jun 2011 20:01:07 +0000 Subject: [PATCH] fix warnings --- php_http_request_factory.c | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/php_http_request_factory.c b/php_http_request_factory.c index a4ac4f0..be5cb7d 100644 --- a/php_http_request_factory.c +++ b/php_http_request_factory.c @@ -135,12 +135,12 @@ PHP_METHOD(HttpRequestFactory, createRequest) if ((pf = php_http_persistent_handle_concede(NULL , name_str, name_len, Z_STRVAL_P(phi), Z_STRLEN_P(phi) TSRMLS_CC))) { php_http_resource_factory_ops_t ops = { - php_http_persistent_handle_acquire, - php_http_persistent_handle_accrete, - php_http_persistent_handle_release + (php_http_resource_factory_handle_ctor_t) php_http_persistent_handle_acquire, + (php_http_resource_factory_handle_copy_t) php_http_persistent_handle_accrete, + (php_http_resource_factory_handle_dtor_t) php_http_persistent_handle_release }; - rf = php_http_resource_factory_init(NULL, &ops, pf, php_http_persistent_handle_abandon TSRMLS_CC); + rf = php_http_resource_factory_init(NULL, &ops, pf, (void (*)(void *)) php_http_persistent_handle_abandon TSRMLS_CC); } efree(name_str); @@ -212,12 +212,12 @@ PHP_METHOD(HttpRequestFactory, createPool) if ((pf = php_http_persistent_handle_concede(NULL , name_str, name_len, Z_STRVAL_P(phi), Z_STRLEN_P(phi) TSRMLS_CC))) { php_http_resource_factory_ops_t ops = { - php_http_persistent_handle_acquire, - php_http_persistent_handle_accrete, - php_http_persistent_handle_release + (php_http_resource_factory_handle_ctor_t) php_http_persistent_handle_acquire, + (php_http_resource_factory_handle_copy_t) php_http_persistent_handle_accrete, + (php_http_resource_factory_handle_dtor_t) php_http_persistent_handle_release }; - rf = php_http_resource_factory_init(NULL, &ops, pf, php_http_persistent_handle_abandon TSRMLS_CC); + rf = php_http_resource_factory_init(NULL, &ops, pf, (void (*)(void *)) php_http_persistent_handle_abandon TSRMLS_CC); } efree(name_str); @@ -279,12 +279,12 @@ PHP_METHOD(HttpRequestFactory, createDataShare) if ((pf = php_http_persistent_handle_concede(NULL , name_str, name_len, Z_STRVAL_P(phi), Z_STRLEN_P(phi) TSRMLS_CC))) { php_http_resource_factory_ops_t ops = { - php_http_persistent_handle_acquire, - php_http_persistent_handle_accrete, - php_http_persistent_handle_release + (php_http_resource_factory_handle_ctor_t) php_http_persistent_handle_acquire, + (php_http_resource_factory_handle_copy_t) php_http_persistent_handle_accrete, + (php_http_resource_factory_handle_dtor_t) php_http_persistent_handle_release }; - rf = php_http_resource_factory_init(NULL, &ops, pf, php_http_persistent_handle_abandon TSRMLS_CC); + rf = php_http_resource_factory_init(NULL, &ops, pf, (void (*)(void *)) php_http_persistent_handle_abandon TSRMLS_CC); } efree(name_str); -- 2.30.2