You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2002/08/27 13:18:58 UTC

cvs commit: httpd-2.0/modules/loggers mod_log_config.c

trawick     2002/08/27 04:18:57

  Modified:    modules/loggers mod_log_config.c
  Log:
  make the type of the variable explicit to quiet a gcc warning
  
  Revision  Changes    Path
  1.89      +1 -1      httpd-2.0/modules/loggers/mod_log_config.c
  
  Index: mod_log_config.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/loggers/mod_log_config.c,v
  retrieving revision 1.88
  retrieving revision 1.89
  diff -u -r1.88 -r1.89
  --- mod_log_config.c	26 Aug 2002 23:23:45 -0000	1.88
  +++ mod_log_config.c	27 Aug 2002 11:18:57 -0000	1.89
  @@ -234,7 +234,7 @@
   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