From dc9f0808dc86890766640160e4499ba2c5293f1a Mon Sep 17 00:00:00 2001 From: Josh Hursey Date: Thu, 7 Apr 2005 17:48:42 +0000 Subject: [PATCH] revert type in malloc to match This commit was SVN r5206. --- src/communicator/comm_cid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/communicator/comm_cid.c b/src/communicator/comm_cid.c index e5c821ffa0..092bddf9c1 100644 --- a/src/communicator/comm_cid.c +++ b/src/communicator/comm_cid.c @@ -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; }