1
1

The usual cast problem on Windows.

This commit was SVN r12008.
Этот коммит содержится в:
George Bosilca 2006-10-05 05:43:46 +00:00
родитель 5885696079
Коммит 413e54638d

Просмотреть файл

@ -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;
}