1
1

Remove a warning about signed to unsigned comparaison.

This commit was SVN r23935.
Этот коммит содержится в:
George Bosilca 2010-10-25 18:29:11 +00:00
родитель b9a06afd98
Коммит c2e40f8616

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

@ -95,7 +95,7 @@ int min_heap_elt_is_top(const struct event *e)
int min_heap_erase(min_heap_t* s, struct event* e)
{
if (((unsigned int)-1) != e->ev_timeout_pos.min_heap_idx)
if (((int)-1) != e->ev_timeout_pos.min_heap_idx)
{
struct event *last = s->p[--s->n];
unsigned parent = (e->ev_timeout_pos.min_heap_idx - 1) / 2;