ben 97/02/15 10:34:28
Modified: src buff.c
Log:
Fix warning.
Revision Changes Path
1.19 +2 -1 apache/src/buff.c
Index: buff.c
===================================================================
RCS file: /export/home/cvs/apache/src/buff.c,v
retrieving revision 1.18
retrieving revision 1.19
diff -C3 -r1.18 -r1.19
*** buff.c 1997/02/10 21:22:19 1.18
--- buff.c 1997/02/15 18:34:27 1.19
***************
*** 239,245 ****
}
/* we know this will fit because of how we wrote it in start_chunk() */
! i = ap_snprintf( &fb->outbase[fb->outchunk], fb->outchunk_header_size,
"%x", fb->outcnt - fb->outchunk - fb->outchunk_header_size );
/* we may have to tack some trailing spaces onto the number we just
wrote
--- 239,246 ----
}
/* we know this will fit because of how we wrote it in start_chunk() */
! i = ap_snprintf( (char *)&fb->outbase[fb->outchunk],
! fb->outchunk_header_size,
"%x", fb->outcnt - fb->outchunk - fb->outchunk_header_size );
/* we may have to tack some trailing spaces onto the number we just
wrote