From c8620d7628827025bb6ad2715903958fc9c552a3 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Wed, 16 May 2001 18:38:36 +0000 Subject: [PATCH] this patch removes the warning: warning C4715: 'mpm_service_install' : not all control paths return a value it would result in a bogus exit status from apache when invoked to install the service Submitted by: Ian Holsman git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89129 13f79535-47bb-0310-9956-ffa450edef68 --- server/mpm/winnt/service.c | 1 + 1 file changed, 1 insertion(+) diff --git a/server/mpm/winnt/service.c b/server/mpm/winnt/service.c index ac88e236c4e..474402a0b58 100644 --- a/server/mpm/winnt/service.c +++ b/server/mpm/winnt/service.c @@ -912,6 +912,7 @@ apr_status_t mpm_service_install(apr_pool_t *ptemp, int argc, return (rv); } printf("The %s service is successfully installed.\n", mpm_display_name); + return APR_SUCCESS; } -- 2.47.2