stoddard    99/10/12 05:12:48

  Modified:    src/lib/apr/threadproc/win32 threadpriv.c
  Log:
  More argument swaps...
  
  Revision  Changes    Path
  1.7       +2 -2      apache-2.0/src/lib/apr/threadproc/win32/threadpriv.c
  
  Index: threadpriv.c
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/lib/apr/threadproc/win32/threadpriv.c,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- threadpriv.c      1999/10/11 17:52:22     1.6
  +++ threadpriv.c      1999/10/12 12:12:47     1.7
  @@ -102,8 +102,8 @@
       }
   }
   
  -ap_status_t ap_set_threadkeydata(struct threadkey_t *threadkey, void *data,
  -                                 char *key, ap_status_t (*cleanup) (void *))
  +ap_status_t ap_set_threadkeydata(void *data, char *key, ap_status_t 
(*cleanup) (void *), 
  +                                 struct threadkey_t *threadkey)
   {
       if (threadkey != NULL) {
           return ap_set_userdata(data, key, cleanup, threadkey->cntxt);
  
  
  

Reply via email to