Skip to content

Commit a53326c

Browse files
authored
Merge pull request #8537 from jsquyres/pr/fix-compile-errors
Fix compile errors
2 parents b17cb01 + 9a68bf6 commit a53326c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ompi/mca/pml/ob1/pml_ob1_recvreq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1308,7 +1308,7 @@ void mca_pml_ob1_recv_req_start(mca_pml_ob1_recv_request_t *req)
13081308
req->req_recv.req_base.req_peer, req->req_recv.req_base.req_tag, comm_ptr->c_contextid));
13091309
req->req_recv.req_base.req_ompi.req_status.MPI_ERROR = ompi_comm_is_revoked(comm_ptr)? MPI_ERR_REVOKED: MPI_ERR_PROC_FAILED;
13101310
recv_request_pml_complete( req );
1311-
PERUSE_TRACE_COMM_EVENT(PERSUSE_COMM_SEARCH_UNEX_Q_END,
1311+
PERUSE_TRACE_COMM_EVENT(PERUSE_COMM_SEARCH_UNEX_Q_END,
13121312
&(req->req_recv.req_base), PERUSE_RECV);
13131313
OB1_MATCHING_UNLOCK(&ob1_comm->matching_lock);
13141314
return;

ompi/proc/proc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ int ompi_proc_complete_init_single (ompi_proc_t *proc)
154154
} else {
155155
ui32ptr = &(proc->super.proc_arch);
156156
OPAL_MODEX_RECV_VALUE_OPTIONAL(ret, "OMPI_ARCH", &proc->super.proc_name,
157-
(void**)&ui32ptr, OPAL_UINT32);
157+
(void**)&ui32ptr, PMIX_UINT32);
158158
if (OPAL_SUCCESS == ret) {
159159
/* if arch is different than mine, create a new convertor for this proc */
160160
if (proc->super.proc_arch != opal_local_arch) {
@@ -267,7 +267,7 @@ int ompi_proc_init(void)
267267
#if OPAL_ENABLE_HETEROGENEOUS_SUPPORT
268268
/* add our arch to the modex */
269269
OPAL_MODEX_SEND_VALUE(ret, PMIX_GLOBAL,
270-
"OMPI_ARCH", &opal_local_arch, OPAL_UINT32);
270+
"OMPI_ARCH", &opal_local_arch, PMIX_UINT32);
271271
if (OPAL_SUCCESS != ret) {
272272
return ret;
273273
}

0 commit comments

Comments
 (0)