summaryrefslogtreecommitdiff
path: root/libpthread
diff options
context:
space:
mode:
Diffstat (limited to 'libpthread')
-rw-r--r--libpthread/pthread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libpthread/pthread.c b/libpthread/pthread.c
index d3eb13961..bc27aee3f 100644
--- a/libpthread/pthread.c
+++ b/libpthread/pthread.c
@@ -110,12 +110,12 @@ int pthread_join (pthread_t thread, void **thread_return)
/* Fixme -- wait for thread and get its return value */
retval = EXIT_SUCCESS;
if (thread_return)
- *thread_return = retval;
+ (int)*thread_return = retval;
_exit(retval);
}
link_warning(pthread_join, "pthread_join is a stub and does not behave properly");
void pthread_exit (void *retval)
{
- _exit(retval);
+ _exit(*(int *)retval);
}