correct a few typecasts
This commit was SVN r26816.
Этот коммит содержится в:
родитель
10e3dc396b
Коммит
0f6184985d
@ -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
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user