jim         99/12/13 05:39:24

  Modified:    src/lib/apr/lib apr_snprintf.c
  Log:
  Use the ap_vformatter_buff_t type :)
  
  Revision  Changes    Path
  1.6       +5 -5      apache-2.0/src/lib/apr/lib/apr_snprintf.c
  
  Index: apr_snprintf.c
  ===================================================================
  RCS file: /export/home/cvs/apache-2.0/src/lib/apr/lib/apr_snprintf.c,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- apr_snprintf.c    1999/12/13 13:36:16     1.5
  +++ apr_snprintf.c    1999/12/13 13:39:23     1.6
  @@ -656,8 +656,8 @@
   /*
    * Do format conversion placing the output in buffer
    */
  -API_EXPORT(int) ap_vformatter(int (*flush_func)(ap_vformatter_buff *),
  -    ap_vformatter_buff *vbuff, const char *fmt, va_list ap)
  +API_EXPORT(int) ap_vformatter(int (*flush_func)(ap_vformatter_buff_t *),
  +    ap_vformatter_buff_t *vbuff, const char *fmt, va_list ap)
   {
       register char *sp;
       register char *bep;
  @@ -1149,7 +1149,7 @@
   }
   
   
  -static int snprintf_flush(ap_vformatter_buff *vbuff)
  +static int snprintf_flush(ap_vformatter_buff_t *vbuff)
   {
       /* if the buffer fills we have to abort immediately, there is no way
        * to "flush" an ap_snprintf... there's nowhere to flush it to.
  @@ -1162,7 +1162,7 @@
   {
       int cc;
       va_list ap;
  -    ap_vformatter_buff vbuff;
  +    ap_vformatter_buff_t vbuff;
   
       if (len == 0)
        return 0;
  @@ -1182,7 +1182,7 @@
                             va_list ap)
   {
       int cc;
  -    ap_vformatter_buff vbuff;
  +    ap_vformatter_buff_t vbuff;
   
       if (len == 0)
        return 0;
  
  
  

Reply via email to