summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreadjoin.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/pthreadjoin.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/pthreadjoin.c')
-rw-r--r--cpukit/posix/src/pthreadjoin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/pthreadjoin.c b/cpukit/posix/src/pthreadjoin.c
index c348dd3278..6e5fc28224 100644
--- a/cpukit/posix/src/pthreadjoin.c
+++ b/cpukit/posix/src/pthreadjoin.c
@@ -54,7 +54,7 @@ int pthread_join(
* Put ourself on the threads join list
*/
- _Thread_Executing->Wait.return_argument = (unsigned32 *) &return_pointer;
+ _Thread_Executing->Wait.return_argument = &return_pointer;
_Thread_queue_Enter_critical_section( &api->Join_List );