Fix the error C2100 on Windows, i.e. an illegal indirection.
This commit was SVN r20723.
Этот коммит содержится в:
родитель
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);
|
||||
}
|
||||
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user