1
1

Fix the error C2100 on Windows, i.e. an illegal indirection.

This commit was SVN r20723.
Этот коммит содержится в:
Shiqing Fan 2009-03-04 16:43:51 +00:00
родитель b62bc63f76
Коммит 05d9f0b933

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

@ -87,7 +87,7 @@ int opal_thread_join(opal_thread_t *t, void **thr_return)
return OPAL_ERROR;
}
if( NULL != **thr_return ) {
if( NULL != *thr_return ) {
*thr_return = (void *)((intptr_t)rc);
}