Skip to content

Commit 42d9d86

Browse files
author
Ralph Castain
committed
Fix minor typo in PMIx packing of pmix_app_t - thanks to Gilles for pointing it out
1 parent ec66a6a commit 42d9d86

File tree

1 file changed

+1
-1
lines changed
  • opal/mca/pmix/pmix114/pmix/src/buffer_ops

1 file changed

+1
-1
lines changed

opal/mca/pmix/pmix114/pmix/src/buffer_ops/pack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ int pmix_bfrop_pack_app(pmix_buffer_t *buffer, const void *src,
669669
if (PMIX_SUCCESS != (ret = pmix_bfrop_pack_int(buffer, &app[i].argc, 1, PMIX_INT))) {
670670
return ret;
671671
}
672-
for (j=0; j < app->argc; j++) {
672+
for (j=0; j < app[i].argc; j++) {
673673
if (PMIX_SUCCESS != (ret = pmix_bfrop_pack_string(buffer, &app[i].argv[j], 1, PMIX_STRING))) {
674674
return ret;
675675
}

0 commit comments

Comments
 (0)