You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by wr...@apache.org on 2001/07/13 01:25:58 UTC

cvs commit: apr/include apr.hw

wrowe       01/07/12 16:25:58

  Modified:    include  apr.hw
  Log:
    Fix the iovec len on win32
  
  Revision  Changes    Path
  1.73      +2 -2      apr/include/apr.hw
  
  Index: apr.hw
  ===================================================================
  RCS file: /home/cvs/apr/include/apr.hw,v
  retrieving revision 1.72
  retrieving revision 1.73
  diff -u -r1.72 -r1.73
  --- apr.hw	2001/06/28 01:17:44	1.72
  +++ apr.hw	2001/07/12 23:25:57	1.73
  @@ -324,8 +324,8 @@
   
   /* struct iovec is needed to emulate Unix writev */
   struct iovec {
  -    char* iov_base;
  -    int   iov_len;
  +    char*  iov_base;
  +    size_t iov_len;
   };
   
   /* Nasty Win32 .h ommissions we really need */