From: Niels Provos Date: Wed, 25 Jun 2008 16:32:47 +0000 (+0000) Subject: change min_heap_idx to signed X-Git-Tag: release-2.0.1-alpha~246 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=21f76156b115299ffd8438ed323b03cee050cb77;p=libevent change min_heap_idx to signed svn:r883 --- diff --git a/include/event2/event_struct.h b/include/event2/event_struct.h index 1b3fa7c3..68ef1596 100644 --- a/include/event2/event_struct.h +++ b/include/event2/event_struct.h @@ -78,7 +78,7 @@ struct { \ struct event_base; struct event { TAILQ_ENTRY (event) (ev_active_next); - unsigned int min_heap_idx; /* for managing timeouts */ + int min_heap_idx; /* for managing timeouts */ struct event_base *ev_base;