]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* modules/http/http_request.c
authorPaul Querna <pquerna@apache.org>
Wed, 29 Oct 2008 08:18:45 +0000 (08:18 +0000)
committerPaul Querna <pquerna@apache.org>
Wed, 29 Oct 2008 08:18:45 +0000 (08:18 +0000)
  (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

modules/http/http_request.c

index 5bac240da27cd71ac47a5fdf92aa7a6e2e3735b5..28d237a6e8a75a3f393b76354a2308178d0af3c0 100644 (file)
@@ -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)