Received: by taz.hyperreal.com (8.6.12/8.6.5) id TAA25071; Mon, 27 May 1996 19:49:13 -0700 Received: by taz.hyperreal.com (8.6.12/8.6.5) id TAA25057; Mon, 27 May 1996 19:49:10 -0700 Date: Mon, 27 May 1996 19:49:10 -0700 From: Chuck Murcko Message-Id: <199605280249.TAA25057@taz.hyperreal.com> To: apache-cvs@hyperreal.com Subject: cvs commit: apache/src mod_status.c Sender: owner-apache-cvs@apache.org Precedence: bulk chuck 96/05/27 19:49:09 Modified: src mod_status.c Log: Avoid an annoying warning using -Wall. The ss[] is no longer used since rprintf() appeared. Revision Changes Path 1.19 +0 -2 apache/src/mod_status.c Index: mod_status.c =================================================================== RCS file: /export/home/cvs/apache/src/mod_status.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C3 -r1.18 -r1.19 *** mod_status.c 1996/05/27 21:08:29 1.18 --- mod_status.c 1996/05/28 02:49:08 1.19 *************** *** 102,109 **** void format_byte_out(request_rec *r,unsigned long bytes) { - char ss[20]; - if (bytes < (5 * KBYTE)) rprintf(r,"%d B",(int)bytes); else if (bytes < (MBYTE / 2)) --- 102,107 ----