X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1ee20bd190694fd665b8a19b0620362758674aa3..56bcf2dd190eb7d40a0d2e542d2c8f51f7ebd350:/src/smpi/colls/allgatherv-pair.c diff --git a/src/smpi/colls/allgatherv-pair.c b/src/smpi/colls/allgatherv-pair.c index 3087d46341..b6eea73379 100644 --- a/src/smpi/colls/allgatherv-pair.c +++ b/src/smpi/colls/allgatherv-pair.c @@ -72,15 +72,15 @@ smpi_coll_tuned_allgatherv_pair(void *send_buff, int send_count, { MPI_Aint extent; - int i, src, dst, rank, num_procs; + unsigned int i, src, dst; int tag = COLL_TAG_ALLGATHERV; MPI_Status status; char *send_ptr = (char *) send_buff; char *recv_ptr = (char *) recv_buff; - rank = smpi_comm_rank(comm); - num_procs = smpi_comm_size(comm); + unsigned int rank = smpi_comm_rank(comm); + unsigned int num_procs = smpi_comm_size(comm); if((num_procs&(num_procs-1))) THROWF(arg_error,0, "allgatherv pair algorithm can't be used with non power of two number of processes ! ");