From: Jeff Trawick Date: Tue, 27 Aug 2002 11:18:57 +0000 (+0000) Subject: make the type of the variable explicit to quiet a gcc warning X-Git-Tag: AGB_BEFORE_AAA_CHANGES~148 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2e1a0ec6e2c7225764ddb88fd6a46d9161a8c226;p=apache make the type of the variable explicit to quiet a gcc warning git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96544 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/loggers/mod_log_config.c b/modules/loggers/mod_log_config.c index 615e93baf5..ab7ea4fd0e 100644 --- a/modules/loggers/mod_log_config.c +++ b/modules/loggers/mod_log_config.c @@ -234,7 +234,7 @@ static void ap_log_set_writer_init(ap_log_writer_init *handle); static void ap_log_set_writer(ap_log_writer *handle); static ap_log_writer *log_writer = ap_default_log_writer; static ap_log_writer_init *log_writer_init = ap_default_log_writer_init; -static buffered_logs = 0; /* default unbuffered */ +static int buffered_logs = 0; /* default unbuffered */ /* POSIX.1 defines PIPE_BUF as the maximum number of bytes that is * guaranteed to be atomic when writing a pipe. And PIPE_BUF >= 512