dougm       01/02/01 21:56:12

  Modified:    include  apr_getopt.h apr_hash.h
               include  apr_hooks.h
  Log:
  be consistent with 'const char * const *' spacing (noticed when parsing the 
tree with C::Scan)
  
  Revision  Changes    Path
  1.30      +1 -1      apr/include/apr_getopt.h
  
  Index: apr_getopt.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_getopt.h,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -r1.29 -r1.30
  --- apr_getopt.h      2001/01/18 20:07:19     1.29
  +++ apr_getopt.h      2001/02/02 05:56:12     1.30
  @@ -118,7 +118,7 @@
    * @deffunc apr_status_t apr_initopt(apr_getopt_t **os, apr_pool_t *cont,int 
argc, char *const *argv)
    */
   APR_DECLARE(apr_status_t) apr_initopt(apr_getopt_t **os, apr_pool_t *cont,
  -                                      int argc, const char *const *argv);
  +                                      int argc, const char * const *argv);
   
   /**
    * Parse the options initialized by apr_initopt().
  
  
  
  1.21      +2 -2      apr/include/apr_hash.h
  
  Index: apr_hash.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_hash.h,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- apr_hash.h        2001/01/18 20:07:19     1.20
  +++ apr_hash.h        2001/02/02 05:56:12     1.21
  @@ -121,8 +121,8 @@
    * @return Returns NULL if the key is not present.
    * @deffunc void *apr_hash_get(apr_hash_t *ht, const void *key, apr_size_t 
klen)
    */
  -APR_DECLARE(void*) apr_hash_get(apr_hash_t *ht, const void *key,
  -                                apr_ssize_t klen);
  +APR_DECLARE(void *) apr_hash_get(apr_hash_t *ht, const void *key,
  +                                 apr_ssize_t klen);
   
   /**
    * Start iterating over the entries in a hash table.
  
  
  
  1.36      +1 -1      apr-util/include/apr_hooks.h
  
  Index: apr_hooks.h
  ===================================================================
  RCS file: /home/cvs/apr-util/include/apr_hooks.h,v
  retrieving revision 1.35
  retrieving revision 1.36
  diff -u -r1.35 -r1.36
  --- apr_hooks.h       2001/01/24 22:52:56     1.35
  +++ apr_hooks.h       2001/02/02 05:56:12     1.36
  @@ -70,7 +70,7 @@
   #define APR_DECLARE_EXTERNAL_HOOK(ns,link,ret,name,args) \
   typedef ret ns##_HOOK_##name##_t args; \
   link##_DECLARE(void) ns##_hook_##name(ns##_HOOK_##name##_t *pf, \
  -                                      const char* const* aszPre, \
  +                                      const char * const *aszPre, \
                                         const char * const *aszSucc, int 
nOrder); \
   link##_DECLARE(ret) ns##_run_##name args; \
   typedef struct ns##_LINK_##name##_t \
  
  
  

Reply via email to