- fix a type cast. The whole libmpi library has to be compiled as CXX on Windows, and MS compiler recognizes this as an error.
This commit was SVN r20012.
Этот коммит содержится в:
родитель
a5ed965c78
Коммит
4d2c118d3b
@ -55,7 +55,7 @@ int ompi_fortran_string_f2c(char *fstr, int len, char **cstr)
|
||||
|
||||
/* Allocate space for the C string. */
|
||||
|
||||
if (NULL == (*cstr = malloc(len + 1))) {
|
||||
if (NULL == (*cstr = (char *) malloc(len + 1))) {
|
||||
return OMPI_ERR_OUT_OF_RESOURCE;
|
||||
}
|
||||
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user