You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by tr...@apache.org on 2001/07/24 15:47:46 UTC

cvs commit: apr/threadproc/unix thread.c

trawick     01/07/24 06:47:46

  Modified:    threadproc/unix thread.c
  Log:
  fix a warning for dummy_worker(); it wasn't static and didn't have a
  prototype
  
  Revision  Changes    Path
  1.41      +1 -1      apr/threadproc/unix/thread.c
  
  Index: thread.c
  ===================================================================
  RCS file: /home/cvs/apr/threadproc/unix/thread.c,v
  retrieving revision 1.40
  retrieving revision 1.41
  diff -u -r1.40 -r1.41
  --- thread.c	2001/07/24 05:16:32	1.40
  +++ thread.c	2001/07/24 13:47:46	1.41
  @@ -116,7 +116,7 @@
       return APR_NOTDETACH;
   }
   
  -void *dummy_worker(void *opaque)
  +static void *dummy_worker(void *opaque)
   {
       apr_thread_t *thread = (apr_thread_t*)opaque;
       return thread->func(thread, thread->data);