dgaudet 97/07/31 21:07:58
Modified: src buff.c
Log:
Fix compiler warning on OSF/1.
Revision Changes Path
1.41 +1 -1 apache/src/buff.c
Index: buff.c
===================================================================
RCS file: /export/home/cvs/apache/src/buff.c,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- buff.c 1997/07/31 09:10:29 1.40
+++ buff.c 1997/08/01 04:07:57 1.41
@@ -941,7 +941,7 @@
if (fb->flags & B_CHUNK) {
end_chunk(fb);
}
- vec[0].iov_base = fb->outbase;
+ vec[0].iov_base = (void *)fb->outbase;
vec[0].iov_len = fb->outcnt;
if (fb->flags & B_CHUNK) {
vec[1].iov_base = chunksize;