File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments