From: Michael Wallner Date: Wed, 23 Feb 2005 12:40:16 +0000 (+0000) Subject: * ditch warning X-Git-Tag: RELEASE_0_6_0~19 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=7740fcbe676722c38b8c2f49930285cc0127d054;ds=sidebyside * ditch warning --- diff --git a/http.c b/http.c index b46ba9e..03ac2df 100644 --- a/http.c +++ b/http.c @@ -368,9 +368,10 @@ zend_module_entry http_module_entry = { }; /* }}} */ -static void free_to_free(void **s) + +static void free_to_free(void *s) { - efree(*s); + efree(*(char **)s); } /* {{{ php_http_init_globals(zend_http_globals *) */