Skip to content

Commit 18c5a21

Browse files
committed
Fix typo in error handling flow.
1 parent afa62d8 commit 18c5a21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ompi/mca/pml/ucx/pml_ucx.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ ucp_ep_h mca_pml_ucx_add_proc(ompi_communicator_t *comm, int dst)
236236
free(address);
237237
if (UCS_OK != status) {
238238
PML_UCX_ERROR("Failed to connect to proc: %d, %s", proc_peer->super.proc_name.vpid,
239-
ucx_status_string(status));
239+
ucs_status_string(status));
240240
return NULL;
241241
}
242242

@@ -278,7 +278,7 @@ int mca_pml_ucx_add_procs(struct ompi_proc_t **procs, size_t nprocs)
278278

279279
if (UCS_OK != status) {
280280
PML_UCX_ERROR("Failed to connect to proc: %d, %s", procs[i]->super.proc_name.vpid,
281-
ucx_status_string(status));
281+
ucs_status_string(status));
282282
return OMPI_ERROR;
283283
}
284284

0 commit comments

Comments
 (0)