merge upstream/noglib and update some glib related types

This commit is contained in:
Chris Eagle
2016-12-19 12:32:06 -08:00
11 changed files with 227 additions and 114 deletions

View File

@@ -119,7 +119,7 @@ static inline GList *g_list_insert_sorted_merged(GList *list,
return list;
}
static inline int32_t range_compare(gconstpointer a, gconstpointer b)
static inline gint range_compare(gconstpointer a, gconstpointer b)
{
Range *ra = (Range *)a, *rb = (Range *)b;
if (ra->begin == rb->begin && ra->end == rb->end) {