wrowe       01/07/12 16:35:57

  Modified:    include  apr_mmap.h
  Log:
    You can't map more bytes than a size_t ... eliminate an abused apr_off_t
  
  Revision  Changes    Path
  1.24      +1 -1      apr/include/apr_mmap.h
  
  Index: apr_mmap.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_mmap.h,v
  retrieving revision 1.23
  retrieving revision 1.24
  diff -u -r1.23 -r1.24
  --- apr_mmap.h        2001/06/06 16:05:08     1.23
  +++ apr_mmap.h        2001/07/12 23:35:56     1.24
  @@ -103,7 +103,7 @@
       /** The start of the memory mapped area */
       void *mm;
       /** The amount of data in the mmap */
  -    apr_off_t size;
  +    apr_size_t size;
   };
   
   #if APR_HAS_MMAP
  
  
  

Reply via email to