1
1

Pass the pointer to a string pointer to the packing function

This commit was SVN r18429.
Этот коммит содержится в:
Ralph Castain 2008-05-13 01:31:49 +00:00
родитель 4ead9442b5
Коммит 313240f2b6

Просмотреть файл

@ -468,7 +468,7 @@ int orte_util_encode_pidmap(orte_job_t *jdata, opal_byte_object_t *boptr)
flag = (int)true;
opal_dss.pack(&buf, &flag, 1, OPAL_INT8);
for (i=0; i < jdata->num_procs; i++) {
opal_dss.pack(&buf, procs[i]->slot_list, 1, OPAL_STRING);
opal_dss.pack(&buf, &procs[i]->slot_list, 1, OPAL_STRING);
}
} else {
flag = (int)false;