From: Rainer Jung Date: Mon, 6 Oct 2014 13:39:30 +0000 (+0000) Subject: Silence build warning about missing prototype. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7beca93e592461ec8f76f1cda7165dde99ecc3e7;p=thirdparty%2Fapache%2Fhttpd.git Silence build warning about missing prototype. Followup to r1629507. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1629652 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/mod_cache_socache.c b/modules/cache/mod_cache_socache.c index a6d80b55eb9..6bd9466bd19 100644 --- a/modules/cache/mod_cache_socache.c +++ b/modules/cache/mod_cache_socache.c @@ -1422,7 +1422,7 @@ static int socache_status_hook(request_rec *r, int flags) return OK; } -void socache_status_register(apr_pool_t *p) +static void socache_status_register(apr_pool_t *p) { APR_OPTIONAL_HOOK(ap, status_hook, socache_status_hook, NULL, NULL, APR_HOOK_MIDDLE); }