From: Jeff Trawick Date: Tue, 9 Sep 2003 18:24:43 +0000 (+0000) Subject: void * can't be used as a function pointer without casting X-Git-Tag: pre_ajp_proxy~1172 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dfc4f68112bf1f0927092bdf0b0b9fa998b20e63;p=apache void * can't be used as a function pointer without casting git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101207 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index cf1535c7a1..ad47e265b0 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -3471,8 +3471,9 @@ static apr_status_t send_parsed_content(ap_filter_t *f, apr_bucket_brigade *bb) else { include_handler_fn_t *handle_func; - handle_func = apr_hash_get(include_handlers, intern->directive, - intern->directive_len); + handle_func = + (include_handler_fn_t *)apr_hash_get(include_handlers, intern->directive, + intern->directive_len); if (handle_func) { DEBUG_INIT(ctx, f, pass_bb);