From 413e54638d01eddea0b438d312a73f71ad6362c9 Mon Sep 17 00:00:00 2001 From: George Bosilca Date: Thu, 5 Oct 2006 05:43:46 +0000 Subject: [PATCH] The usual cast problem on Windows. This commit was SVN r12008. --- opal/threads/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opal/threads/thread.c b/opal/threads/thread.c index 204e95a7a7..ee82e03753 100644 --- a/opal/threads/thread.c +++ b/opal/threads/thread.c @@ -87,7 +87,7 @@ int opal_thread_join(opal_thread_t *t, void **thr_return) return OPAL_ERROR; } - *thr_return = (void *) rc; + *thr_return = (void *)((intptr_t)rc); return OPAL_SUCCESS; }