1
1
This commit was SVN r26816.
Этот коммит содержится в:
Shiqing Fan 2012-07-20 12:10:00 +00:00
родитель 10e3dc396b
Коммит 0f6184985d
2 изменённых файлов: 4 добавлений и 4 удалений

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

@ -46,7 +46,7 @@ int ompi_modex_send(const mca_base_component_t *source_component,
return OMPI_ERR_OUT_OF_RESOURCE;
}
bo.bytes = (void*)data;
bo.bytes = (uint8_t *)data;
bo.size = size;
/* the store API makes a copy of the provided data */
@ -116,7 +116,7 @@ ompi_modex_send_string(const char* key,
int rc;
opal_byte_object_t bo;
bo.bytes = (void*)buffer;
bo.bytes = (uint8_t *)buffer;
bo.size = size;
/* the store API makes a copy of the provided data */

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

@ -1,5 +1,5 @@
#
# Copyright (c) 2011 High Performance Computing Center Stuttgart,
# Copyright (c) 2011-2012 High Performance Computing Center Stuttgart,
# University of Stuttgart. All rights reserved.
# $COPYRIGHT$
#
@ -8,4 +8,4 @@
# $HEADER$
#
exclude_list=hwloc_base_dt.c;hwloc_base_proc_mempolicy.c;hwloc_base_util.c
exclude_list=hwloc_base_proc_mempolicy.c