From 12e502b10d0e0e080d7ee9d028a95326ad5d9862 Mon Sep 17 00:00:00 2001 From: Tim Woodall Date: Tue, 21 Mar 2006 18:18:22 +0000 Subject: [PATCH] use correct loop index This commit was SVN r9356. --- ompi/mca/pml/ob1/pml_ob1.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ompi/mca/pml/ob1/pml_ob1.c b/ompi/mca/pml/ob1/pml_ob1.c index 14853ff1f5..65dad10f7d 100644 --- a/ompi/mca/pml/ob1/pml_ob1.c +++ b/ompi/mca/pml/ob1/pml_ob1.c @@ -197,7 +197,7 @@ int mca_pml_ob1_dump(struct ompi_communicator_t* comm, int verbose) /* dump all btls */ for(n=0; nbtl_eager.arr_size; n++) { - mca_bml_base_btl_t* bml_btl = &ep->btl_eager.bml_btls[i]; + mca_bml_base_btl_t* bml_btl = &ep->btl_eager.bml_btls[n]; bml_btl->btl->btl_dump(bml_btl->btl, bml_btl->btl_endpoint, verbose); } }