We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 810db73 commit 8ec1891Copy full SHA for 8ec1891
opal/mca/pmix/s2/pmix_s2.c
@@ -278,7 +278,7 @@ static int s2_init(void)
278
OBJ_CONSTRUCT(&kv, opal_value_t);
279
kv.key = strdup(OPAL_PMIX_MAX_PROCS);
280
kv.type = OPAL_UINT32;
281
- kv.data.uint32 = i;
+ kv.data.uint32 = atoi(buf);
282
if (OPAL_SUCCESS != (ret = opal_pmix_base_store(&OPAL_PROC_MY_NAME, &kv))) {
283
OPAL_ERROR_LOG(ret);
284
OBJ_DESTRUCT(&kv);
0 commit comments