Skip to content

Commit 93abcc1

Browse files
committed
coll/base: fix compiler warning
Remove unused variable. Signed-off-by: Jeff Squyres <[email protected]>
1 parent 305e330 commit 93abcc1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ompi/mca/coll/base/coll_base_allgatherv.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
* Copyright (c) 2015-2016 Research Organization for Information Science
1717
* and Technology (RIST). All rights reserved.
1818
* Copyright (c) 2017 IBM Corporation. All rights reserved.
19+
* Copyright (c) 2017 Cisco Systems, Inc. All rights reserved
1920
* $COPYRIGHT$
2021
*
2122
* Additional copyrights may follow
@@ -603,7 +604,7 @@ ompi_coll_base_allgatherv_intra_basic_default(const void *sbuf, int scount,
603604
struct ompi_communicator_t *comm,
604605
mca_coll_base_module_t *module)
605606
{
606-
int i, size, rank, err;
607+
int size, rank, err;
607608
MPI_Aint extent, lb;
608609
char *send_buf = NULL;
609610
struct ompi_datatype_t *newtype, *send_type;

0 commit comments

Comments
 (0)