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/16 22:14:56 UTC

cvs commit: apr/include apr_inherit.h

wrowe       01/07/16 13:14:56

  Modified:    include  apr_inherit.h
  Log:
    Yup Ian... this was borked :-)
  
  Revision  Changes    Path
  1.3       +2 -2      apr/include/apr_inherit.h
  
  Index: apr_inherit.h
  ===================================================================
  RCS file: /home/cvs/apr/include/apr_inherit.h,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- apr_inherit.h	2001/07/16 18:14:20	1.2
  +++ apr_inherit.h	2001/07/16 20:14:56	1.3
  @@ -70,7 +70,7 @@
   {                                                                   \
       if (!name->inherit) {                                           \
           name->inherit = 1;                                          \
  -        apr_pool_cleanup_register(name->##pool, (void *)##name##,   \
  +        apr_pool_cleanup_register(name->pool, (void *)name,   \
                                     NULL, cleanup);                   \
       }                                                               \
   }
  @@ -83,7 +83,7 @@
   {                                                                   \
       if (name->inherit) {                                            \
           name->inherit = 0;                                          \
  -        apr_pool_cleanup_kill(name->##pool, (void *)##name##,       \
  +        apr_pool_cleanup_kill(name->pool, (void *)name,       \
                                 NULL, cleanup);                       \
       }                                                               \
   }