You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/03/02 19:50:28 UTC

cvs commit: apache-2.0/src/os/unix iol_socket.c

rbb         00/03/02 10:50:28

  Modified:    src/os/unix iol_socket.c
  Log:
  Remove a warning.
  
  Revision  Changes    Path
  1.16      +1 -1      apache-2.0/src/os/unix/iol_socket.c
  
  Index: iol_socket.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/os/unix/iol_socket.c,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- iol_socket.c	2000/01/28 18:02:28	1.15
  +++ iol_socket.c	2000/03/02 18:50:28	1.16
  @@ -107,7 +107,7 @@
       return ap_send(((iol_socket *)viol)->sock, buf, nbytes);
   }
   
  -static ap_status_t unix_writev(ap_iol *viol, const struct iovec *vec, int nvec,
  +static ap_status_t unix_writev(ap_iol *viol, const struct iovec *vec, ap_size_t nvec,
       ap_ssize_t *nbytes)
   {
       return ap_sendv(((iol_socket *)viol)->sock, vec, nvec, nbytes);