1
1

Get rid of the warning message from the compiler.

This commit was SVN r18401.
Этот коммит содержится в:
Shiqing Fan 2008-05-07 14:31:42 +00:00
родитель 8088ec8bce
Коммит 897fe404c0

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

@ -91,7 +91,7 @@ static inline int memchecker_call (int (*f)(void *, size_t), void * addr,
return OMPI_SUCCESS;
}
if( datatype->size == (datatype->true_ub - datatype->true_lb) ) {
if( datatype->size == (size_t) (datatype->true_ub - datatype->true_lb) ) {
/* We have a contiguous type. */
f( addr , datatype->size );
} else {