Skip to content

Commit e167a64

Browse files
committed
ompi/proc: fix compile errors
OPAL_UINT32 --> PMIX_UINT32 Signed-off-by: Jeff Squyres <[email protected]>
1 parent b17cb01 commit e167a64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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)