From e7bd66a799bd3b70a158a59b24ba96a9c9741204 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 21 Oct 2003 09:39:11 +0000 Subject: 2003-10-21 Ralf Corsepius * src/cancelrun.c, src/pthreadexit.c, src/pthreadjoin.c, src/sigtimedwait.c: Remove unnecessary typecasts in assignments to thread->Wait.return_argument. --- cpukit/posix/src/pthreadexit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/posix/src/pthreadexit.c') 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 ); -- cgit v1.2.3