From: Bill Stoddard Date: Thu, 9 Nov 2000 19:38:26 +0000 (+0000) Subject: Clean up compiler warnings X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=69a355012fefce095b48ad37612fc52bf0a35419;p=apache Clean up compiler warnings git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86892 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/listen.c b/server/listen.c index a3b964642b..f829d39931 100644 --- a/server/listen.c +++ b/server/listen.c @@ -172,7 +172,7 @@ static apr_status_t close_listeners_on_exec(void *v) } -static void alloc_listener(process_rec *process, char *addr, unsigned int port) +static void alloc_listener(process_rec *process, char *addr, apr_port_t port) { ap_listen_rec **walk; ap_listen_rec *new; @@ -211,7 +211,7 @@ static void alloc_listener(process_rec *process, char *addr, unsigned int port) #if !defined(WIN32) && !defined(SPMT_OS2_MPM) static #endif -int ap_listen_open(process_rec *process, unsigned port) +int ap_listen_open(process_rec *process, apr_port_t port) { apr_pool_t *pconf = process->pconf; ap_listen_rec *lr;