1
1

Fix some compiler warnings. I was using the ompi_predefined_* types instead of the base classes.

This commit was SVN r20722.
Этот коммит содержится в:
Josh Hursey 2009-03-04 16:16:13 +00:00
родитель a9a0fbec84
Коммит b62bc63f76

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

@ -3553,7 +3553,7 @@ static int traffic_message_create_drain_message(bool post_drain,
* The post_drained() will properly handle the packed datatype
* by changing the count to (count * ddt_size).
*/
ompi_ddt_duplicate(&ompi_mpi_packed, &(drain_msg_ref->datatype));
ompi_ddt_duplicate(&(ompi_mpi_packed.dt), &(drain_msg_ref->datatype));
/* Create a buffer of the necessary type/size */
if(drain_msg_ref->count > 0 ) {
@ -4832,7 +4832,7 @@ static int ft_event_post_drained(void)
/* Initalize to invalid values */
for(i = 0; i < (total_number_to_drain); ++i) {
quiesce_requests[i] = &ompi_request_null;
quiesce_requests[i] = &(ompi_request_null.request);
quiesce_statuses[i] = &ompi_status_empty;
}
quiesce_request_count = 0;