You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by dr...@apache.org on 2002/01/12 19:12:33 UTC

cvs commit: apr/threadproc/beos thread.c

dreid       02/01/12 10:12:33

  Modified:    threadproc/beos thread.c
  Log:
  Thought I committed this a whiole back, but guess I didn't...
  
  Revision  Changes    Path
  1.31      +1 -1      apr/threadproc/beos/thread.c
  
  Index: thread.c
  ===================================================================
  RCS file: /home/cvs/apr/threadproc/beos/thread.c,v
  retrieving revision 1.30
  retrieving revision 1.31
  diff -u -r1.30 -r1.31
  --- thread.c	27 Dec 2001 17:03:00 -0000	1.30
  +++ thread.c	12 Jan 2002 18:12:33 -0000	1.31
  @@ -146,7 +146,7 @@
   {
       apr_pool_destroy(thd->cntxt);
       thd->exitval = retval;
  -    exit_thread ((status_t)(*retval));
  +    exit_thread ((status_t)(retval));
       /* This will never be reached... */
       return APR_SUCCESS;
   }