From: Bill Stoddard Date: Thu, 9 Nov 2000 19:38:26 +0000 (+0000) Subject: Clean up compiler warnings X-Git-Tag: APACHE_2_0_ALPHA_8~123 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0d07a2faa37cdb9ab046cd6063efbe477ed8527f;p=thirdparty%2Fapache%2Fhttpd.git 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 a3b964642ba..f829d399310 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;