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

cvs commit: apr/strings apr_strings.c

jwoolley    01/07/24 17:33:05

  Modified:    strings  apr_strings.c
  Log:
  Fix build breakage due to mismatch between function and prototype
  
  Revision  Changes    Path
  1.17      +1 -1      apr/strings/apr_strings.c
  
  Index: apr_strings.c
  ===================================================================
  RCS file: /home/cvs/apr/strings/apr_strings.c,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -d -u -r1.16 -r1.17
  --- apr_strings.c	2001/07/24 22:55:28	1.16
  +++ apr_strings.c	2001/07/25 00:33:05	1.17
  @@ -212,7 +212,7 @@
       return start;
   }
   
  -APR_DECLARE(char *) apr_off_t_toa(apr_pool_t *p, long n)
  +APR_DECLARE(char *) apr_off_t_toa(apr_pool_t *p, apr_off_t n)
   {
       const int BUFFER_SIZE = sizeof(apr_off_t) * 3 + 2;
       char *buf = apr_palloc(p, BUFFER_SIZE);