Skip to content

Commit 673657c

Browse files
authored
Merge pull request #10950 from wckzhang/typo
pml/ob1: Fix typo succedded
2 parents 20a197a + e7ae869 commit 673657c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ompi/mca/pml/ob1/pml_ob1_progress.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ int mca_pml_ob1_progress(void)
6767
{
6868
int i, queue_length = opal_list_get_size(&mca_pml_ob1.send_pending);
6969
int j, completed_requests = 0;
70-
bool send_succedded;
70+
bool send_succeeded;
7171

7272
completed_requests += mca_pml_ob1_process_pending_accelerator_async_copies();
7373

@@ -94,7 +94,7 @@ int mca_pml_ob1_progress(void)
9494
case MCA_PML_OB1_SEND_PENDING_START:
9595
MCA_PML_OB1_SEND_REQUEST_RESET(sendreq);
9696
endpoint = sendreq->req_endpoint;
97-
send_succedded = false;
97+
send_succeeded = false;
9898
for(j = 0; j < (int)mca_bml_base_btl_array_get_size(&endpoint->btl_eager); j++) {
9999
mca_bml_base_btl_t* bml_btl;
100100
int rc;
@@ -103,12 +103,12 @@ int mca_pml_ob1_progress(void)
103103
bml_btl = mca_bml_base_btl_array_get_next(&endpoint->btl_eager);
104104
rc = mca_pml_ob1_send_request_start_btl(sendreq, bml_btl);
105105
if( OPAL_LIKELY(OMPI_SUCCESS == rc) ) {
106-
send_succedded = true;
106+
send_succeeded = true;
107107
completed_requests++;
108108
break;
109109
}
110110
}
111-
if( false == send_succedded ) {
111+
if( false == send_succeeded ) {
112112
add_request_to_send_pending(sendreq, MCA_PML_OB1_SEND_PENDING_START, true);
113113
}
114114
}

0 commit comments

Comments
 (0)