1
1

Remove unused variable (Coverty fix 176).

This commit was SVN r19193.
Этот коммит содержится в:
George Bosilca 2008-08-06 14:07:20 +00:00
родитель c021427002
Коммит f6ebdf8896

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

@ -529,13 +529,12 @@ mca_coll_basic_reduce_lin_inter(void *sbuf, void *rbuf, int count,
int root, struct ompi_communicator_t *comm,
mca_coll_base_module_t *module)
{
int i, rank, err, size;
int i, err, size;
ptrdiff_t true_lb, true_extent, lb, extent;
char *free_buffer = NULL;
char *pml_buffer = NULL;
/* Initialize */
rank = ompi_comm_rank(comm);
size = ompi_comm_remote_size(comm);
if (MPI_PROC_NULL == root) {