summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/cancelrun.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/cancelrun.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/cancelrun.c')
-rw-r--r--cpukit/posix/src/cancelrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/cancelrun.c b/cpukit/posix/src/cancelrun.c
index 59138ac1b7..3eda8edabe 100644
--- a/cpukit/posix/src/cancelrun.c
+++ b/cpukit/posix/src/cancelrun.c
@@ -53,7 +53,7 @@ void _POSIX_Threads_cancel_run(
/* Now we can delete the thread */
- the_thread->Wait.return_argument = (unsigned32 *)PTHREAD_CANCELED;
+ the_thread->Wait.return_argument = PTHREAD_CANCELED;
_Thread_Close(
_Objects_Get_information( the_thread->Object.id ),
the_thread