From: Michael Wallner Date: Thu, 2 Jun 2011 20:01:07 +0000 (+0000) Subject: fix warnings X-Git-Tag: DEV_2-before-client~112 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=22e379f57c2668672f3dbf909fc748dbc1ede50a fix warnings --- 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);