battling git

This commit is contained in:
Chris Eagle
2016-12-19 12:10:02 -08:00
parent e53c295f61
commit e07e57a862
4 changed files with 66 additions and 116 deletions

View File

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