summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreadexit.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-10-21 09:39:11 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-10-21 09:39:11 +0000
commite7bd66a799bd3b70a158a59b24ba96a9c9741204 (patch)
treeb97425b5ce5f861a0ed205b2156b872b1ff22e7e /cpukit/posix/src/pthreadexit.c
parent2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-e7bd66a799bd3b70a158a59b24ba96a9c9741204.tar.bz2
2003-10-21 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* src/cancelrun.c, src/pthreadexit.c, src/pthreadjoin.c, src/sigtimedwait.c: Remove unnecessary typecasts in assignments to thread->Wait.return_argument.
Diffstat (limited to 'cpukit/posix/src/pthreadexit.c')
-rw-r--r--cpukit/posix/src/pthreadexit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/pthreadexit.c b/cpukit/posix/src/pthreadexit.c
index 776e3f8d91..24846675d0 100644
--- a/cpukit/posix/src/pthreadexit.c
+++ b/cpukit/posix/src/pthreadexit.c
@@ -38,7 +38,7 @@ void pthread_exit(
_Thread_Disable_dispatch();
- _Thread_Executing->Wait.return_argument = (unsigned32 *)value_ptr;
+ _Thread_Executing->Wait.return_argument = value_ptr;
_Thread_Close( the_information, _Thread_Executing );