1
1

Remove unused variable (Coverty fix 169).

This commit was SVN r19185.
Этот коммит содержится в:
George Bosilca 2008-08-06 13:57:43 +00:00
родитель 23c2292478
Коммит 4f91b7806c

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

@ -123,13 +123,10 @@ mca_coll_basic_allgatherv_inter(void *sbuf, int scount,
struct ompi_communicator_t *comm,
mca_coll_base_module_t *module)
{
int size, rsize;
int err, i;
int *scounts = NULL;
int *sdisps = NULL;
int rsize, err, i;
int *scounts = NULL, *sdisps = NULL;
rsize = ompi_comm_remote_size(comm);
size = ompi_comm_size(comm);
scounts = (int *) malloc(rsize * sizeof(int));
sdisps = (int *) calloc(rsize, sizeof(int));