1
1

Remove a compiler warning (explicit conversion from unsigned to signed).

This commit was SVN r3425.
Этот коммит содержится в:
George Bosilca 2004-10-28 23:40:45 +00:00
родитель 2c3d86dae4
Коммит 9ebd1fdcf2

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

@ -90,7 +90,7 @@ bool ompi_list_insert(ompi_list_t *list, ompi_list_item_t *item, long long idx)
int i;
volatile ompi_list_item_t *ptr, *next;
if ( idx >= list->ompi_list_length ) {
if ( idx >= (long long)list->ompi_list_length ) {
return false;
}