From: Paul Querna Date: Wed, 29 Oct 2008 08:18:45 +0000 (+0000) Subject: * modules/http/http_request.c X-Git-Tag: 2.3.0~214 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=92e9540e3b0bed90b92a01d3475cf067e4f22348;p=thirdparty%2Fapache%2Fhttpd.git * modules/http/http_request.c (ap_process_async_request): Fix warning: 'return' with a value, in function returning void git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@708821 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_request.c b/modules/http/http_request.c index 5bac240da27..28d237a6e8a 100644 --- a/modules/http/http_request.c +++ b/modules/http/http_request.c @@ -297,7 +297,7 @@ void ap_process_async_request(request_rec *r) ap_die(access_status, r); } - return ap_process_request_after_handler(r); + ap_process_request_after_handler(r); } void ap_process_request(request_rec *r)