1
1

revert type in malloc to match

This commit was SVN r5206.
Этот коммит содержится в:
Josh Hursey 2005-04-07 17:48:42 +00:00
родитель 23e3269d76
Коммит dc9f0808dc

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

@ -623,7 +623,7 @@ static int ompi_comm_allreduce_intra_oob (int *inbuf, int *outbuf,
local_rank = ompi_comm_rank ( comm );
tmpbuf = (int *) malloc ( count * sizeof(int32_t));
tmpbuf = (int *) malloc ( count * sizeof(int));
if ( NULL == tmpbuf ) {
return MPI_ERR_INTERN;
}