1
1

- 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.
Этот коммит содержится в:
Shiqing Fan 2008-11-17 12:18:01 +00:00
родитель 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;
}