From: William A. Rowe Jr Date: Fri, 31 May 2002 21:01:58 +0000 (+0000) Subject: Clean up new compiler emit noise X-Git-Tag: 2.0.37~125 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=07fe8d864db85924e8341007145d1e8928bca58d;p=apache Clean up new compiler emit noise git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95455 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/log.c b/server/log.c index fe24b11aa6..19647a1832 100644 --- a/server/log.c +++ b/server/log.c @@ -629,7 +629,7 @@ AP_DECLARE(void) ap_log_pid(apr_pool_t *p, const char *filename) AP_DECLARE(apr_status_t) ap_read_pid(apr_pool_t *p, const char *filename, pid_t *mypid) { - const int BUFFER_SIZE = sizeof(long) * 3 + 2; /* see apr_ltoa */ + const apr_size_t BUFFER_SIZE = sizeof(long) * 3 + 2; /* see apr_ltoa */ apr_file_t *pid_file = NULL; apr_status_t rv; const char *fname;